Given positive real constants $a$ and $b$ with $a < b$, I want to solve the following recurrence relation:
$T(n_{<b}) = 1$
$T(n_{\geq b}) = T(n-a) + T(n-b)$
I expect an answer in the sense of $T(n) = \Theta(c^n)$ where $c$ is given in terms of $a$ and $b$.
Application
For some constant $z$ I have a brute-force algorithm of the form $T(n) = 2(T(n-z))$ which takes time $O(2^{n/z})$. However, I can manage to imbalance the search tree so that it becomes the recurrence of this question with $a < z < b$ which is hopefully faster, although unfortunately I also have $a + b \geq 2z$