Most efficient code for the first 10000 prime numbers?

The Sieve of Atkin is probably what you’re looking for, its upper bound running time is O(N/log log N).

If you only run the numbers 1 more and 1 less than the multiples of 6, it could be even faster, as all prime numbers above 3 are 1 away from some multiple of six.
Resource for my statement

Leave a Comment