Excel - Generatel Fibonacci numbers
Fibonacci numbers are a sequence of numbers. The first number is 0, the second number is 1. From the third number on, all numbers equal to the sum of the previous numbers. So the third number is 0+1=1, the fourth number is 1+1=2, the fifth number is 1+2=3, etc. Fibonacci numbers are often used as an example of recursive algorithm in computer programming.
Fibonacci numbers can be easily generated using Excel. Use a simple formula in the third data row:
=A2+A3
Then scroll down. It automatically generates the Fibonacci sequence!
Fibonacci numbers can be easily generated using Excel. Use a simple formula in the third data row:
=A2+A3
Then scroll down. It automatically generates the Fibonacci sequence!
Comments
Post a Comment