It is a sequence of integers where each term is the sum of the two preceding ones: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34… It is defined by the recurrence F(n) = F(n−1) + F(n−2), with F(0) = 0 and F(1) = 1. It was popularized by Leonardo of Pisa ('Fibonacci') in the 13th century, in a problem about breeding rabbits.