Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

It's easy enough to make a simple sieve:

for (int i=2; i<=N; i++){
    if (sieve[i]==0){
        cout << i << " is prime" << endl;
        for (int j = i; j<=N; j+=i){
            sieve[j]=1;
        }
    }
    cout << i << " has " << sieve[i] << " distinct prime factors\n";
}

But what about when N is very large and I can't hold that kind of array in memory? I've looked up segmented sieve approaches and they seem to involve finding primes up until sqrt(N) but I don't understand how it works. What if N is very large (say 10^18)?

share|improve this question
You mentioned in your answer to larsmans that you are really interested in finding the number of prime factors for large N. In that case, and assuming N < 10^18, you're much better off to factor N than to sieve all the numbers up to N. – user448810 Apr 20 '12 at 16:20
For each k up to N, not just N – John Smith Apr 20 '12 at 16:24
What's k? What's k? – user448810 Apr 20 '12 at 16:32
2<=k<=N in general. – John Smith Apr 20 '12 at 16:34

3 Answers

up vote 8 down vote accepted

The basic idea of a segmented sieve is to choose the sieving primes less than the square root of n, choose a reasonably large segment size that nevertheless fits in memory, and then sieve each of the segments in turn, starting with the smallest. At the first segment, the smallest multiple of each sieving prime that is within the segment is calculated, then multiples of the sieving prime are marked as composite in the normal way; when all the sieving primes have been used, the remaining unmarked numbers in the segment are prime. Then, for the next segment, for each sieving prime you already know the first multiple in the current segment (it was the multiple that ended the sieving for that prime in the prior segment), so you sieve on each sieving prime, and so on until you are finished.

The size of n doesn't matter, except that a larger n will take longer to sieve than a smaller n; the size that matters is the size of the segment, which should be as large as convenient (say, the size of the primary memory cache on the machine).

You can see a simple implementation of a segmented sieve here. Note that a segmented sieve will be very much faster than O'Neill's priority-queue sieve mentioned in another answer; if you're interested, there's an implementation here.

share|improve this answer
I've seen lots of implementations already -- again I don't understand them fully because it's all too abstract for me. I am looking for examples. – John Smith Apr 20 '12 at 16:24
1  
You asked for examples. The referenced site shows precisely how to sieve the range 100 to 200 in five segments, including how to choose the sieving primes and how to reset the sieving primes for each segment. Did you work out the example for yourself, by hand? What is it that you still don't understand? – user448810 Apr 20 '12 at 16:40
2  
Looking at the example. The sieving primes less than the square root of 200 are 3, 5, 7, 11 and 13. Let's consider the first segment, which has the ten values {101 103 105 107 109 111 113 115 117 119}. The smallest multiple of 3 in the segment is 105, so strike 105 and each third number after: 111, 117. The smallest multiple of 5 in the segment is 105, so strike 105 and the fifth number after: 115. The smallest multiple of 7 in the segment is 105, so strike 105 and the seventh number after: 119. There is no multiple of 11 in the segment, so there is nothing to do. The smallest multiple of 13 – user448810 Apr 20 '12 at 16:58
2  
in the segment is 117, so strike it. The numbers that are left {101 103 107 109 113} are prime. For the second segment {121 123 125 127 129 131 133 135 137 139} the smallest multiples of each prime are 123, 125, 133 (beyond the segment), 121 and 143 (beyond the segment), which can all be calculated by counting the next multiple of the sieving prime after the end of the first segment. Does that help? – user448810 Apr 20 '12 at 17:02
1  
+1 for an excellent description of segmented sieves and the programmingpraxis link. – NealB Apr 20 '12 at 17:20
show 19 more comments

There's a version of the Sieve based on priority queues that yields as many primes as you request, rather than all of them up to an upper bound. It's discussed in the classic paper "The Genuine Sieve of Eratosthenes" and googling for "sieve of eratosthenes priority queue" turns up quite a few implementations in various programming languages.

share|improve this answer
I've come across the implementations but the problem is that I don't understand them. Those papers are always quite dense. I'm mainly looking for examples because I think those are easiest to work with and understand. Technically I am using the sieve to acquire # of unique prime factors per value k for large N. – John Smith Apr 20 '12 at 16:10

First of all, your sieve snippet has a typo in it:

// sieve[0..N] initialized to all 0s, evidently

for (int i=2; i<=N; i++){
    if (sieve[i]==0){
        cout << i << " is prime" << endl;
        for (int j = i; j<=N; j+=i){
            sieve[j] += 1;    // must be '+=' , not just '='     ---- NB!!
        }
    }
    cout << i << " has " << sieve[i] << " distinct prime factors\n";
}

Normally, when sieving to find primes only, the inner loop would be starting from a prime's square, for (int j = i*i; j<=N; j+=i) { ... }, to mark off all the non-trivial multiples of that prime. And herein lies the catch: this obviously skips 6 when marking multiples of 3; skips 10,15,20 for 5; etc. This means that for your sieve here it's wrong to start from the square. But that is the basis for the segmented sieve scheme. Which means the sieve must be contiguous, and sqrt-based segmented sieve is inapplicable for your purposes here, of collecting the numbers of distinct prime factors of each number in a range.

You have to generate contiguous sieve "core" up to at least N/2, not sqrt(N), and for N=10^18 it probably won't make much of a difference.

edit: Or you can store your primes in a file, and proceed with the counting sieve by segments. The primes supply should be separate from the sieve anyway, and have its own extention mechanism (probably a standard segmented sieve, itself). To calculate omegas around N, the primes on file would have to reach N/2, automatically extending as you go.

Concerning the "tangled code of terse articles", consider this Haskell code (using a short variable name p to indicate a prime):

primes = 2 : 3 : ([5,7..] `minus` unionAll [[p*p, p*p+2*p..] | p <- tail primes])

unionAll here must smash together the ordered streams of multiples of primes, to produce a joined ordered sequence of composites, without duplicates. It can be implemented as a priority queue, or through a tree of comparisons, or with an array which will serve as a sorting and duplicates-removing device, by placing the segments of each stream that fit, onto an array, one after another. minus implements an ordered set difference operation.

The work is naturally divided into segments between the successive primes' squares.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.