Project Euler #50: Consecutive prime sum

  • + 0 comments

    Spent a lot of time on this problem, and got 100.00 without much satisfaction. I could be wrong, but I cannot see how using Miller-Rabin is significantly better than a simple is_prime(n) function when you have all the primes up to sqrt(n) already available after a prime sieve.