Fibonacci Numbers
From charlesreid1
Fibonacci numbers are possibly the most famous integer sequence. The nth Fibonacci number is computed from the n-1th and n-2th Fibonacci numbers as follows:
$ F(n) = F(n-1) + F(n-2) $
where the two starting numbers are $ F_0 = 1 $ and $ F_1 = 1 $.