I have the following recurrence relation
\begin{align} u_{0} &= 1 \nonumber \\ u_{1} &= 2 \nonumber \\ u_{n} &= u_{n-2} + u_{n-1} +1 \end{align}
Now I want to prove that the ratio after $n$ (where $n$ is large) remains constant. I can see this by simple putting the equation in excel and then see that the ratio grows to the Golden Ratio (i.e. $\frac{1+\sqrt{5}}{2}$).
Hence I want to prove $$\lim_{n \rightarrow \infty} \frac{u_{n+1}}{u_{n}} = C,$$ for some $C \in \mathbb{R}$ (more specifically $C = \frac{1+\sqrt{5}}{2}$.
I find $$\frac{u_{n+1}}{u_{n}} = \frac{u_{n-2}+u_{n-1}+1}{u_{n-1}+u_{n}+1},$$ but this does not really help me. I would say we can ommit the $+1$ in the equations since $u_{n}$ grows large but this is not really mathematically sound.
Any suggestions are more than welcome.