How do I show that the following sum is equal to the fibonacci numbers? Atleast numerical evaluation suggests it is
$$
\sum_{k=0}^{\lceil n/2\rceil}\binom{n+1-k}{n+1-2k}
$$
The image below shows how it moves through pascals triangle, it starts at the right $1$ on line $n+1$, if the upper line is $n=0$.
Asked
Active
Viewed 128 times
2

Alice Ryhl
- 7,853
-
2Use induction, showing that your formula satisfies the Fibonacci recurrence relation $F(n+1) = F(n) + F(n-1)$. – Bob Krueger Apr 05 '15 at 19:52
-
@Bob1123 right, that was pretty obvious. Oh well – Alice Ryhl Apr 05 '15 at 19:54
-
It may be easy to show that the relation is true, but it does not make the identity obvious. Take a look at the last picture here. – Bob Krueger Apr 05 '15 at 20:03