Given the following recurrence:
$T(n) := T(n-k) + T(n-1),\ n,k \in N$
$T(l) := 1,\ l \in \{0,...,k-1\}$
I need to find a lower bound for $T(n)$. (For $k = 2$, the recurrence is equal to the Fibonacci recurrence where there is a closed form). In principle, $\alpha^n$ is an estimation for $T(n)$, where $\alpha$ is the first real unique root of the equation
$x^{k} - x^{k-1} - 1 = 0.$
However, testing the method numerically, it seems that $a^{n-m} \leq T(n)$ is only true for some offset $m$, with $m \geq 0$ being a natural number. I suspect $m=k$, but I do not understand the underlying math well enough...
Does someone have an idea?
Many thanks in advance.