[Math] Sum of cubes of first n fibonacci numbers

fibonacci-numberssequences-and-series

Let $\{f_k\}$ be the sequence of fibonacci numbers. It is well-known that $\sum_{k=1}^n f_k=f_{n+2}-1$ and $\sum_{k=1}^n f_k^2=f_n f_{n+1}$ . Is there a formula for $\sum_{k=1}^n f_k^3$ ?

Best Answer

$$F_n=\frac{1}{\sqrt{5}}(\phi^n-(-\phi)^{-n})\\ \sum_{k=1}^n F_k^3=\frac{1}{5\sqrt{5}}\sum_{k=1}^n(\phi^{3k}-3(-\phi)^k+3\phi^{-k}-(-\phi)^{-3k})$$
and then use Geometric Series

Related Question