Project Euler Homework
|
What is the first term in the Fibonacci sequence to contain 1000 digits? The Fibonacci sequence is defined by the recurrence relation: More...
Go to the source code of this file.
Functions | |
int | main () |
What is the first term in the Fibonacci sequence to contain 1000 digits? The Fibonacci sequence is defined by the recurrence relation:
Fn = Fn−1 + Fn−2 , where F1 = 1 and F2 = 1.
Hence the first 12 terms will be:
The 12th term, F12, is the first term to contain three digits.
What is the first term in the Fibonacci sequence to contain 1000 digits?
Definition in file 025.cpp.