Definition and Basic Concepts of Fibonacci Sequence
The Fibonacci Sequence is a series of numbers introduced by Italian mathematician Leonardo Fibonacci in 1202 in his book "Liber Abaci", where each term is defined as the sum of the two preceding terms. The sequence starts with F(0) = 0, F(1) = 1, and follows the recurrence relation F(n) = F(n-1) + F(n-2). The first 10 terms are 0, 1, 1, 2, 3, 5, 8, 13, 21, 34. For example, F(5) = F(4) + F(3) = 3 + 2 = 5, F(6) = F(5) + F(4) = 5 + 3 = 8. While originating from a rabbit breeding problem, this sequence appears in mathematics, nature, art, and computer science. Fibonacci numbers grow exponentially, approximating ΟβΏ / β5 for large n (Ο is the golden ratio 1.618...).