These are some facts and theorems on fibonacci numbers that are often useful for various problems.
Wiki Link: Fibonacci Number
Fibonacci Sequence : A sequence of integers $F_0, F_1, \cdots$ such that $F_{n} = F_{n-1} + F_{n - 2}$ for all $n \geqslant 1$, with, $F_0 = 0$ and $F_1 = 1$.
Lucas Sequence: $L_n = F_{n-1} + F_{n + 1}$
Golden Ratio: $\phi = \frac{1+\sqrt{5}}{2}$
Binet’s Formula:
\[F_{n}=\frac{1}{\sqrt{5}}\left(\frac{\sqrt{5}+1}{2}\right)^{n}-\frac{(-1)^{n}}{\sqrt{5}}\left(\frac{\sqrt{5}-1}{2}\right)^{n}\]for $n \geq 0$.
(Strong Divisibility)
\(\gcd(F_n, F_m) = F_{\gcd(n,m)}\)
(GCD Rule)
\(\gcd(F_n, F_{n-1}) = 1\)
(Divisibility Sequence)
\(m \mid n \implies F_m \mid F_n\)
(Cassini’s Identity)
\(F_{n-1}F_{n+1} - F_n^2 = (-1)^n\)
(Matrix Power Form)
\(\begin{pmatrix}1 & 1\\1 & 0\end{pmatrix}^n =
\begin{pmatrix}F_{n+1} & F_n\\F_n & F_{n-1}\end{pmatrix}\)
(Parity) $F_n$ is even iff $n$ is divisible by $3$
(Lucas Identity)
\(F_n^2 + F_{n+1}^2 = F_{2n+1}\)
(Fibonacci Generating Function)
\(\sum_{n=1}^{\infty} F_n x^n = \frac{x}{1-x-x^2}\)
(Finite Sum)
\(F_1 + F_2 + \cdots + F_n = F_{n+2} - 1\)
(Balls and Urns Formulation)
\(F_n = \sum_{k=0}^{n-1} \binom{n-k-1}{k} \quad \text{or} \quad
\sum_{k=1}^{n} \binom{n-k}{k-1}\)
(Fibonacci Limit Theorem)
\(\lim_{n\to\infty} \frac{F_{n+1}}{F_n} = \phi\)
(Gap Telescope)
\(\frac{1}{F_{n-1}F_{n+1}} = \frac{1}{F_{n-1}F_n} - \frac{1}{F_n F_{n+1}}\)
(Difference Rule)
\(F_n F_{n+1} = F_n^2 + F_{n-1}F_n\)
(Square Sum)
\(\sum_{k=1}^{n} F_k^2 = F_n F_{n+1}\)
(Double Sum)
\(F_m F_{n+1} + F_{m-1} F_n = F_{n+m}\)
(Triple Sum)
\(F_a F_{a+b+c} - F_{a+b} F_{a+c} = (-1)^{a+1} F_b F_c\)
(First Form Inequality)
\(F_k > F_{k-2} + F_{k-3} + \cdots + F_2\)
(Sum of the First $n$ Odd-Indexed)
\(\sum_{i=1}^{n} F_{2i-1} = F_{2n}\)
(Sum of the First $n$ Even-Indexed)
\(\sum_{i=1}^{n} F_{2i} = F_{2n+1} - 1\)
(Gelin-Cesàro Identity)
\(F_n^4 - F_{n-2} F_{n-1} F_{n+1} F_{n+2} = 1, \quad n \ge 3\)
Fact 1: The only Fibonacci numbers that are squares are $0, 1, 144.$ Proof
Fact 2: Every positive integer $m$, there is a Fibonacci number divisible by $m$. Proof also see, AoPS
Fact 3: A number $x$ is fibonacci if $5x^2 \pm 4$ is a square. Another way to test if a number is fibonacci is to invert binet’s formula.
Fact 4: The ratio of two successive term in the Fibonacci Sequence, i.e, $\displaystyle G_n = \frac{F_{n+1}}{F_n}$
Theorem[Zeckendorf]: Every positive integer can be represented uniquely
as the sum of one or more Fibonacci numbers in such a way that the sum does not include any two consecutive Fibonacci numbers.
Theorem[Counting]:
Theorem: All the odd divisors of Fibonacci numbers with odd subscripts are of the form $4t + 1$
Theorem: Let $r \in \mathbb{N}$. The Fibonacci numbers modulo $r$ form a periodic sequence.