problemunknownuncategorizedfibonacci-progressionfibonacci progressionfibonacciprogression

Fibonacci Numbers

Updated: Jun 3, 2024

Fibonacci numbers form an interesting sequence of numbers in which each element is obtained by adding two preceding elements and the sequence starts with 0 and 1.

Fibonacci was discovered by a Sanskrit grammarian Pingala in 200 BC. Was introduced to western world by Leonardo of Pisa, known as Fibonacci. Fibonacci nos. are Nature’s way of numbering.

Sequence is defined as, F0=0F_{0} = 0 and F1=1F_{1} = 1 and Fn=Fn1+Fn2F_{n} = F_{n-1} + F_{n-2}

Here are some fibonacci numbers:

Terms of Fibonacci Sequence
F(0) = 0F(10) = 55
F(1)= 1F(11) = 89
F(2) = 1F(12) = 144
F(3) = 2F(13) = 233
F(4) = 3F(14) = 377
F(5) = 5F(15) = 610
F(6) = 8F(16) = 987
F(7) = 13F(17) = 1597
F(8) = 21F(18) = 2584
F(9) = 34F(19) = 4181

Comments