Enter 2 numbers then the number of results you would like. The program then calculates the sequence of numbers and displays them on the right. ----------------------------------------------------------------------------------------- NOTE: It is recommended that you don't use too high of a "maximum results" number. It begins to slow down at around the 1000th result, and it is possible that this will crash slower computers. EDIT: I have run a test. with 5 and 5 being the first integers, the generator turned to marking the results as "infinity" after the 1473'd integer. The memory usage had increased drastically since I started by the 2200th integer.
This took about 25 minutes to create. This is a number generator for the Fibonacci sequence, named for Italian mathematician Leonardo Pisano Bigollo (c. 1170 – c. 1250), known as Fibonacci. In the Fibonacci sequence, you start with 2 numbers. You add the first number to the second number, and you add the second number to the result, and the first result to the new result, and so on. Wikipedia credits: http://en.wikipedia.org/wiki/Fibonacci_number http://en.wikipedia.org/wiki/Leonardo_Fibonacci