Forum Authority

Full Version: Fibonacci Sequence
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
So back when I was learning python... Who am I kidding, I am still learning python. But I decided to try to make the Fibonacci sequence and here's what I got.

https://github.com/x04/fibonacci

Background of Fibanocci Sequence
The Fibanocci sequence is a series of numbers where each new number in the sequence is equal to the sum of the last 2 numbers. So it goes 1, 1, 2, 3, 5, 8, and so on and so on. The sequence is named by it's discoverer, Leonardo Fibonacci. It was discovered in the 13th century.

The Fibonacci sequence can be found in a lot of things today, here are some links for you to read more about it:
https://en.wikipedia.org/wiki/Fibonacci_number
http://www.livescience.com/37470-fibonac...uence.html
http://jwilson.coe.uga.edu/emat6680/parv...nature.htm
Cool haha :)




Anyways good luck in learning python!