The Fibonacci sequence is defined by F0= 1, F1= 1, Fn+2= Fn+1+ Fn.
A standard method of trying to solve such recursion formulas is to try something of the form Fn= an. Then, of course, Fn+1= an+1 and Fn+2= an+2 so the equation becomes an+2= an+1+ an. If we divide the entire equation by an we arrive at a2= a+ 1 or the quadratic equation a2- a- 1= 0. Solving that by the quadratic formula,
a= \frac{1\pm\sqrt{5}}{2}
That tells us that
F_n= \left(\frac{1+ \sqrt{5}}{2}\right)^n
and
F_n= \left(\frac{1-\sqrt{5}}{2}\right)^n
satisfy that equation. Since this is a linear equation, any solution must be of the form
F_n= A\left(\frac{1+ \sqrt{5}}{2}\right)^n+ B\left(\frac{1- \sqrt{5}}{2}\right)^n
for some numbers A and B.
In particular, if n= 0
F_0= A+ B= 1[/itex]<br />
and, if n= 1<br />
F_n= A\left(\frac{1+ \sqrt{5}}{2}\right)+ B\left(\frac{1- \sqrt{5}}{2}\right)= 1<br />
Solving those two equations for A and B, we get (assuming I have done the arithmetic correctly!) <br />
A= \frac{1+\sqrt{5}}{2\sqrt{5}}<br />
and<br />
B= \frac{1-\sqrt{5}}{2\sqrt{5}}<br />
<br />
Putting all of that together, we have<br />
F_n= \frac{1+\sqrt{5}}{2\sqrt{5}}\left(\frac{1+ \sqrt{5}}{2}\right)^n+ \frac{1-\sqrt{5}}{2\sqrt{5}}\left(\frac{1- \sqrt{5}}{2}\right)^n<br />
<br />
It is remarkable that this gives integer values for n any non-negative integer!<br />
<br />
I don't know that it "means" anything for non-integer n.