Fibonacci series is a series of integer numbers where the first two numbers in the series are 1 and 1, or 0 and 1, depending on the chosen starting point of the series, and each subsequent number is the sum of the previous two numbers ie. Fn = Fn-1 + Fn-2.
For example:
For example:
1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, ….
Or
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, ….
Or
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, ….