Inverse Fibonacci sequence

discrete mathematicsfibonacci-numbersnumerical methodssequences-and-series

I was having fun with Fibonacci numbers, and I had the idea to consider the sequence
$
F_n=F_{n-1}^{-1}+F_{n-2}^{-1}
$

instead.

I wrote a simple program to compute the first terms and the sequence seemed chaotic, although converging to $\sqrt{2}$ whatever $F_0$ and $F_1$ were. ($F_0,F_1\neq0$).

How can I prove that the sequence indeed converges, and it converges to $\sqrt{2}$? Is it hopeless to try and find a closed-term formula for $F_n$?

Best Answer

Let $F_n$ converge to $x$. Therefore, $$x=\frac{1}{x}+\frac{1}{x}=\frac{2}{x} $$so $$x^2=2$$providing solutions of $$x=\pm\sqrt2$$ If you try starting with negative numbers you should converge to $-\sqrt2$.

Related Question