The Fibonacci sequence is the series of numbers in a specific pattern such that the first number of the sequence is 0 and the second number of the sequence is 1. After that, every next number of the sequence is the sum of past two number of the sequence.
The Fibonacci sequence will look like this:
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, ...
- The 2 is found by adding the two numbers before it (1+1)
- The 3 is found by adding the two numbers before it (1+2),
- And the 5 is (2+3),
- and so on