Given that $F_n=F_{n-1}+F_{n-2}$, with initial conditions $F_1=1$ and $F_2=3$. Provide a formula, without solving for the recurrence, for $F_1+F_2+...+F_n$.
Any ideas how I should do this question without the use of the recurrence formula? I know that I can solve for a recurrence formula and using sum of the geometric progression, I am able to get an answer. However, how would you do that without solving for the recurrence?
This is what I have obtained so far:
$F_3=F_2+F_1\\F_4=F_3+F_2\\F_5=F_4+F_3\\...$
My sum is this:
$F_1+F_2=F_1+F_2\\F_1+F_2+F_3=2F_2+2F_1\\F_1+F_2+F_3+F_4=4F_2+3F_1\\F_1+F_2+F_3+F_4+F_5=7F_2+5F_1\\F_1+F_2+F_3+F_4+F_5+F_6=12F_2+8F_1$
I think I'm beginning to see a pattern here: That is, the sum of the 2 coefficients in the previous term of $F_1$ and $F_2$ is the current coefficient of $F_2$, and that the current coefficient of $F_1$ is the sum of the previous 2 coefficients of $F_1$.
However, how am I suppose to find a formula linking $F_1+F_2+F_3+...+F_n$?
There is an additional information in the question, but I'm not sure if the hint is useful.
The hint is: Consider $F_1^2+F_2^2+F_3^2+...+F_n^2=F_nF_{n+1}-2$
Is there anything I am missing out?
$F_1+F_2+F_3+\cdots+F_n = (f_{n+1}-1)F_2+ f_n F_1$
where $f_n$ is the $n$-th Fibonacci number.
– lhf Apr 25 '17 at 14:03