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

I am doing a project at the moment and I need an efficient method for calculating prime numbers. I have used the sieve of Eratosthenes but, I have been searching around and have found that the sieve of Atkin is a more efficient method. I have found it difficult to find an explanation (that I have been able to understand!) of this method. How does it work? Example code (preferably in C or python) would be brilliant.

Edit: thanks for your help, the only thing that I still do not understand is what the x and y variables are referring to in the pseudo code. Could someone please shed some light on this for me?

share|improve this question
This looks a lot like a university question... – Spence Jun 21 '09 at 12:15
7  
or a Project Euler question – David Johnstone Jun 21 '09 at 12:26

3 Answers

up vote 10 down vote accepted

The wiki page is always a good place to start. If you see the end of the page, it links to examples in both C and Python:

Here's the Python function, copied from the second link:

def sieveOfErat(end):  
  if end < 2: return []  

  #The array doesn't need to include even numbers  
  lng = ((end/2)-1+end%2)  

  # Create array and assume all numbers in array are prime  
  sieve = [True]*(lng+1)  

  # In the following code, you're going to see some funky  
  # bit shifting and stuff, this is just transforming i and j  
  # so that they represent the proper elements in the array.  
  # The transforming is not optimal, and the number of  
  # operations involved can be reduced.  

  # Only go up to square root of the end  
  for i in range(int(sqrt(end)) >> 1):  

    # Skip numbers that aren’t marked as prime  
    if not sieve[i]: continue  

    # Unmark all multiples of i, starting at i**2  
    for j in range( (i*(i + 3) << 1) + 3, lng, (i << 1) + 3):  
      sieve[j] = False  

  # Don't forget 2!  
  primes = [2]  

  # Gather all the primes into a list, leaving out the composite numbers  
  primes.extend([(i << 1) + 3 for i in range(lng) if sieve[i]])  

  return primes
share|improve this answer
1  
As an aside; what's the general policy here for citing other websites? The reason I ask is I considered copy-pasting one of the examples from the wikipedia article, but I decided against it as that's a perfectly good resource and I'd just be duplicating the content here; the better solution would to encourage the OP to look on wikipedia first for standard questions such as this. Any thoughts? – Dave Rigby Jun 21 '09 at 12:22
3  
@Dave: I understand your slight confusion regarding this. The policy is generally to quote the web page from which you are taking the information (either text or code) and then paste as much as appears sensible from the appropiate parts of the page. There are two primary reasons for this: a) convenice to whomever is reading the answer, b) if the linked web page happens to go down/be modified at any point, the original content is still preserved on SO. Not all of these reasons apply in all cases, but it's nonetheless good practice. Crediting the source is of course a must, as you have done. – Noldorin Jun 21 '09 at 12:28
2  
Saying that, encouraging someone do do their own research is usually a good thing. In this case, since we've already pointed the OP to the wiki page, it's not really doing to much to provide the code example too, IMO. – Noldorin Jun 21 '09 at 12:31
2  
The wiki page was the first page I looked at in relation to the problem but I didn't fully understand the pseudo code. When I looked elsewhere a lot of people had copied and pasted the wiki page so I wasn't able to find the answers to my questions (that I could understand). – marc lincoln Jun 22 '09 at 13:54
6  
At the time of this writing, krenzel.info is down. So I'm glad someone copied the Python code here - that's what I was looking for :) – jnylen Oct 15 '09 at 0:13
show 2 more comments

The Wikipedia page looks pretty comprehensive - it even has links to implementations in C and Python.

share|improve this answer

Here's a c++ implementation of sieve of atkins that might help you...

#include <iostream>
#include <cmath>
#include <fstream>
#include<stdio.h>
#include<conio.h>
using namespace std;

#define  limit  1000000

int root = (int)ceil(sqrt(limit));
bool sieve[limit];
int primes[(limit/2)+1];

int main (int argc, char* argv[])
{
   //Create the various different variables required
   FILE *fp=fopen("primes.txt","w");
   int insert = 2;
   primes[0] = 2;
   primes[1] = 3;
   for (int z = 0; z < limit; z++) sieve[z] = false; //Not all compilers have false as the       default boolean value
   for (int x = 1; x <= root; x++)
   {
        for (int y = 1; y <= root; y++)
        {
             //Main part of Sieve of Atkin
             int n = (4*x*x)+(y*y);
             if (n <= limit && (n % 12 == 1 || n % 12 == 5)) sieve[n] ^= true;
             n = (3*x*x)+(y*y);
             if (n <= limit && n % 12 == 7) sieve[n] ^= true;
             n = (3*x*x)-(y*y);
             if (x > y && n <= limit && n % 12 == 11) sieve[n] ^= true;
        }
   }
        //Mark all multiples of squares as non-prime
   for (int r = 5; r <= root; r++) if (sieve[r]) for (int i = r*r; i < limit; i += r*r) sieve[i] = false;
   //Add into prime array
   for (int a = 5; a < limit; a++)
   {
            if (sieve[a])
            {
                  primes[insert] = a;
                  insert++;
            }
   }
   //The following code just writes the array to a file
   for(int i=0;i<1000;i++){
             fprintf(fp,"%d",primes[i]);
             fprintf(fp,", ");
   }

   return 0;

}

share|improve this answer
This looks like a translation of WP's pseudocode, but look at the talk page where there's discussion about that pseudocode being no good really. See this subsection en.wikipedia.org/wiki/… esp. towards its end. – Will Ness Oct 23 '12 at 9:24

protected by Noldorin Nov 28 '12 at 0:05

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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