show/hide this revision's text 2 added 151 characters in body

I need to know, for example, the primes that are between 1000000000 and that same number minus 100000.

Then build a sieve for exactly those numbers you are interested in. Computing all primes below is a waste, unless you want to know exactly how many primes there are below 999900000.

A good data structure for this size of numbers is a bit set. Because about one in 21 numbers is a prime, it takes less memory than storing the numbers explicitly, and it is fast enough for iterating through ranges.

Edit: To be concrete, on my laptop in Java sieving the whole range takes a little over a minute, sieving the last 100000 about 30 milliseconds.

show/hide this revision's text 1

I need to know, for example, the primes that are between 1000000000 and that same number minus 100000.

Then build a sieve for exactly those numbers you are interested in. Computing all primes below is a waste, unless you want to know exactly how many primes there are below 999900000.

A good data structure for this size of numbers is a bit set. Because about one in 21 numbers is a prime, it takes less memory than storing the numbers explicitly, and it is fast enough for iterating through ranges.