Project Euler #2: Even Fibonacci numbers

  • + 0 comments

    couple hints: 1. don't compute all fibonacci numbers, the even ones are sufficient 2. store a fine selection of even fibonacci numbers and their pre sums for later reference 3. you can even speed up the search for the matching even fibonacci number by using a matching exponential factor and some log functions