10,000,000th Fibonacci number
I’ve written a couple times about Fibonacci numbers and certificates. Here the certificate is auxiliary data that makes it faster to confirm that the original calculation was correct. This post puts some timing numbers to this. I calculated the 10 millionth Fibonacci number using code from this post. n = 10_000_000 F = fib_mpmath(n) This took 150.3 seconds. As I’ve discussed before, a number f is a Fibonacci number if and only if 5f² ± 4 is a […]