I recently came across a problem in Herbert Wilf's Generatingfunctionology book that I can't come up with an elegant solution to and can't find any solutions online. The problem statement begins on page 38
https://www.math.upenn.edu/~wilf/gfologyLinked2.pdf
and concerns 'fountains of coins', basically what you get when you stack rows of coins in 2 dimensions. The book goes through a proof that the generating function for the number of block fountains, basically fountains with no gaps, that can be with a base that is exactly $k$ coins wide. The generating function ends up being
$$F(x) = \frac{1-2x}{1-3x+x^2}$$
It turns out that if you look at the terms in the sequence, they are the odd terms of the Fibonacci numbers, $F_{2N-1}$. The book states this and leaves it as an exercise, but I can't seem to make any progress on any sort of nice combinatorial argument to show this. If anyone has any insight, it would be greatly appreciated!
Use the fact that $F_{2n+1}=F_{2n-1}+\sum_{k=1}^nF_{2k-1}=2F_{2n-1}+\sum_{k=1}^{n-1}F_{2k-1}$, and prove it by induction on $n$. Let $f(n)$ be the number of block fountains with a base of $n$ coins, and assume that $f(k)=F_{2k-1}$ for $k\le n$. Now start with a base of $n+1$ coins. If the second row has no coin in the first available slot, you have essentially a block fountain on a base of the last $n$ coins; there are $f(n)$ of these. If the second row has a coin in the first available slot, the block fountain consisting of all rows but the first has a base of $k$ coins for some $k\in[n]$, and the position of that base relative to the bottom row of the whole fountain is fixed. Thus, this case adds another $\sum_{k=1}^nf(k)=\sum_{k=1}^nF_{2k-1}$ block fountains, for a total of $f(n+1)=F_{2n-1}+\sum_{k=1}^nF_{2k-1}=F_{2n+1}$ block fountains with base $n+1$.
Added: One can also show combinatorially that $f(n+1)=3f(n)-f(n-1)$. As above, start with a base of $n+1$ coins. Also as above, there are $f(n)$ block fountains that have $n$ coins in the second row and $f(n)$ that do not have a coin in the first slot of the second row. Similarly, there are $f(n)$ that do not have a coin in the last slot of the second row. Finally, this counts twice the $f(n-1)$ block fountains that do not have a coin in either of the end slots of the second row, so we get $f(n+1)=3f(n)-f(n-1)$. Then observe that the Fibonacci numbers with odd indices satisfy the same recurrence with the same initial conditions.