What is Fibonacci Sequence of numbers?

Technology CommunityCategory: Fibonacci SequenceWhat is Fibonacci Sequence of numbers?
VietMX Staff asked 3 years ago

The Fibonacci Sequence is the series of numbers:

0, 1, 1, 2, 3, 5, 8, 13, 21, 34, ...

Fibonacci sequence characterized by the fact that every number after the first two is the sum of the two preceding ones:

Fibonacci(0) = 0, Fibonacci(1) = 1,Fibonacci(n) = Fibonacci(n-1) + Fibonacci(n-2)  

Fibonacci sequence, appears a lot in nature. Patterns such as spirals of shells, curve of waves, seed heads, pinecones, and branches of trees can all be described using this mathematical sequence. The fact that things as large as spirals of galaxies, and as small as DNA molecules follow the Golden Ratio rule suggests that Fibonacci sequence is one of the most fundamental characteristics of the Universe.

 

what-is-fibonacci-sequence