Fibonacci number: Difference between revisions

From Citizendium
Jump to navigation Jump to search
imported>Karsten Meyer
(New page: <!-- Taken from en.wikipedia.org/wiki/Fibonacci number --> In mathematics, the '''Fibonacci numbers''' form a sequence defined by the following recurrence relation: :<math> F_n ...)
 
imported>Karsten Meyer
mNo edit summary
Line 24: Line 24:
*<math>\operatorname{gcd}(f_m, f_n) = f_{\operatorname{gcd}(m,n)} </math>
*<math>\operatorname{gcd}(f_m, f_n) = f_{\operatorname{gcd}(m,n)} </math>
*<math>F_0^2 + F_1^2 + F_2^2 + ... + F_n^2 = \sum_{i=0}^n F_i^2 = F_n \cdot F_{n+1}</math>
*<math>F_0^2 + F_1^2 + F_2^2 + ... + F_n^2 = \sum_{i=0}^n F_i^2 = F_n \cdot F_{n+1}</math>
==Further reading==
* [[John Horton Conway|John H. Conway]] und Richard K. Guy, ''The Book of Numbers'', ISBN 0-387-97993-X

Revision as of 07:55, 18 November 2007

In mathematics, the Fibonacci numbers form a sequence defined by the following recurrence relation:

The sequence of fibonacci numbers start: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, ...

Fibonacci numbers and the rabbits

The sequence of fibonacci numbers was first used, to repesent the growth of a colony of rabbits, starting with one pair of rabbits.

Properties

  • The quotient of two consecutive fibonacci numbers converges to the golden ratio:
  • If divides then divides
  • If is a prime number, then is also a prime number.

Further reading