1) Definition.
Here is the Fibonacci sequence:
\( 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, \ldots. \)
Call the first element \( u_1, \) the second one \( u_2, \) the third \( u_3, \) and so on. The sequence starts with two ones, then each subsequent element is the sum of the two preceding ones:
\begin{align}
u_1 &= u_2 = 1\\
u_{n+2} &= u_{n+1} + u_{n}, \hspace{15px} n \geq 1.
\end{align}