There are many applications of the Fibonacci series both in
mathematics and in the real world. The Fibonacci series is obtained
by starting with 0 and 1, and each subsequent term in the series is
obtained by adding the previous two terms. Given n in the top row
of the table below, the numbers in the second row represent Fib(n),
the numbers in the Fibonacci series. So Fib(0) = 0, and Fib(1) = 1.
Then Fib(2)is obtained by adding Fib(0)and...