I came across this recursive sequence (often called the Müller sequence) defined as follows : $U_{n+2} = 111 - \frac{1130}{U_{n+1}}+\frac{3000}{U_{n+1}\times U_{n}} $, with $U_{0} = 2$ and $U_{1} = -4$ and I want to find the expression of $U_{n}$ in function of $n$. I found in some forums that the closed expression is $\frac{4\times 5^{n+1}-3\times6^{n+1}}{4\times5^{n}-3\times6^{n}}$ but I have no clue how to show it mathematically.
The purpose of this sequence is to prove that mathematically, the limit is $6$, whilst when using Maple, Wolfram Alpha or any other computation tool, the resulting limit is $100$ (which I've already verified using multiple computation tools).
One approach I used is to suppose that $U_{n}$ converges to $l$ and then to take the resulting equation : $l^{3} - 111l^{2} + 1130l - 3000 = 0$, I found its roots : $l_{1} = 5$, $l_{2} = 6$ and $l_{3} = 100$. I don't know however how to show that, considering the initial conditions, only the valid answer is $6$.
I'd appreciate any new insights.