vote up 7 vote down star
3

I want to print the first 10000 prime numbers. Can anyone give me the most efficient code for this? Clarifications:

  1. It does not matter if your code is inefficient for n >10000.
  2. The size of the code does not matter.
  3. You cannot just hard code the values in any manner.
flag

1  
Keep in mind that finding the first 10000 primes is a relatively small task. You could be looking at a difference of a few seconds between a fast and a slow algorithm. – stalepretzel Oct 17 '08 at 15:43
3  
A little off topic but... this thread has 6 tags? I thought there was a limit of 5? – Neil N Apr 7 at 19:56
1  
oddly enough, this reminds me of Project Euler's problem 7 : projecteuler.net/index.php?section=problems&i… – Brann Aug 8 at 10:39

18 Answers

vote up 18 vote down check

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

link|flag
1  
Sieve of Eratosthenes could be faster for small N. See my answer. – J.F. Sebastian Oct 6 '08 at 20:06
2  
Either way, "The Sieve of Atkin" and "Sieve of Eratosthenes" are pretty badass sounding names. – Simucal Feb 16 at 5:34
Though this is a good answer both Sieves only generate primes in the range [2, N], rather than the first N primes. – Daniel Aug 10 at 1:12
vote up 0 vote down

Here is a Sieve of Eratosthenes that I wrote in PowerShell a few days ago. It has a parameter for identifying the number of prime numbers that should be returned.

#
# generate a list of primes up to a specific target using a sieve of eratosthenes
#
function getPrimes { #sieve of eratosthenes, http://en.wikipedia.org/wiki/Sieve_of_Eratosthenes
    param ($target,$count = 0)
    $sieveBound = [math]::ceiling(( $target - 1 ) / 2) #not storing evens so count is lower than $target
    $sieve = @($false) * $sieveBound
    $crossLimit = [math]::ceiling(( [math]::sqrt($target) - 1 ) / 2)
    for ($i = 1; $i -le $crossLimit; $i ++) {
        if ($sieve[$i] -eq $false) {
            $prime = 2 * $i + 1
            write-debug "Found: $prime"
            for ($x = 2 * $i * ( $i + 1 ); $x -lt $sieveBound; $x += 2 * $i + 1) {
                $sieve[$x] = $true
            }
        }
    }
    $primes = @(2)
    for ($i = 1; $i -le $sieveBound; $i ++) {
        if($count -gt 0 -and $primes.length -ge $count) {
            break;
        }
        if($sieve[$i] -eq $false) {
            $prime = 2 * $i + 1
            write-debug "Output: $prime"
            $primes += $prime
        }
    }
    return $primes
}
link|flag
vote up 0 vote down

The Sieve seems to be the wrong answer. The sieve gives you the primes up to a number N, not the first N primes. Run @Imran or @Andrew Szeto, and you get the primes up to N.

The sieve might still be usable if you keep trying sieves for increasingly larger numbers until you hit a certain size of your result set, and use some caching of numbers already obtained, but I believe it would still be no faster than a solution like @Pat's.

link|flag
vote up 0 vote down

What's the expectation if you get asked this in an interview? That you've gone through the books and are familiar with the theory? Could people be honestly expected to come up with such an analysis and algorithm in a short interview if they were not already familiar with the theory?

link|flag
vote up 1 vote down

Sieves are your best friend. My code is at http://im.jabagawee.com/pb/03434878.txt, but it doesn't get the first 10,000 primes. It should get about 10,500 of them though, so I think it'd work well for you.

link|flag
vote up 0 vote down

Adapting and following on from GateKiller, here's the final version that I've used.

    public IEnumerable<long> PrimeNumbers(long number)
    {
        List<long> primes = new List<long>();
        for (int i = 2; primes.Count < number; i++)
        {
            bool divisible = false;

            foreach (int num in primes)
            {
                if (i % num == 0)
                    divisible = true;

                if (num > Math.Sqrt(i))
                    break;
            }

            if (divisible == false)
                primes.Add(i);
        }
        return primes;
    }

It's basically the same, but I've added the "break on Sqrt" suggestion and changed some of the variables around to make it fit better for me. (I was working on Euler and needed the 10001th prime)

link|flag
vote up 1 vote down

If you really just want the print out then a google search followed by a print is the fastest. :-)

link|flag
Good search keywords: prime number table. Search turned up for example this site: walter-fendt.de/m14e/primes.htm – Juha Syrjälä Jan 14 at 20:15
Calculating the prime numbers up to 10000 is much faster. – gs Apr 7 at 19:54
1  
Not if you count writing the code. :-) – Kevin Gale May 6 at 17:38
vote up 3 vote down

@Matt: log(log(10000)) is ~2

From the wikipedia article (which you cited) Sieve of Atkin:

This sieve computes primes up to N using O(N/log log N) operations with only N1/2+o(1) bits of memory. That is a little better than the sieve of Eratosthenes which uses O(N) operations and O(N1/2(log log N)/log N) bits of memory (A.O.L. Atkin, D.J. Bernstein, 2004). These asymptotic computational complexities include simple optimizations, such as wheel factorization, and splitting the computation to smaller blocks.

Given asymptotic computational complexities along O(N) (for Eratosthenes) and O(N/log(log(N))) (for Atkin) we can't say (for small N=10_000) which algorithm if implemented will be faster.

Achim Flammenkamp wrote in The Sieve of Eratosthenes:

cited by:

@num1

For intervals larger about 10^9, surely for those > 10^10, the Sieve of Eratosthenes is outperformed by the Sieve of Atkins and Bernstein which uses irreducible binary quadratic forms. See their paper for background informations as well as paragraph 5 of W. Galway's Ph.D. thesis.

Therefore for 10_000 Sieve of Eratosthenes can be faster then Sieve of Atkin.

To answer OP the code is prime_sieve.c (cited by num1)

link|flag
vote up 7 vote down

This isn't strictly against the hardcoding restriction, but comes terribly close. Why not programatically download this list and print it out, instead?

http://primes.utm.edu/lists/small/10000.txt

link|flag
3  
For most computers, calculating the values would be quicker than the latency involved in downloading them over the internet. – Corey Oct 17 '08 at 15:50
But not from having the list ready in memory. That's probably what he meant. – Sebastian Krog Jun 18 at 18:50
3  
"Sieve of Google" – Kevin L. Aug 5 at 4:33
lol @krog. why would you bother to set up a network connection and all that jazz to DL a static file each time? of course you'd predownload it, heck, even hardcode it into an array. – Mark Sep 7 at 18:57
vote up 0 vote down

Can you explain the requirement not to hardcode the values?

More exactly, can you provide an "algorithm" that given a program, will determine if the values are hardcoded?

link|flag
vote up 0 vote down

@engtech: Your regular expression is wrong.

No, it's right. The expression tests whether the number is not a prime and to apply it, the number first has to be transformed into a string of 1s. And yes, the expression misses an initial /.

I already linked an explanation.

link|flag
this should have been a comment on the answer not another answer – spoon16 Sep 7 at 18:59
spoon16: This answer was written long before comments were implemented on Stack Overflow. – Konrad Rudolph Sep 7 at 19:37
vote up 4 vote down

Using GMP, one could write the following:

#include <stdio.h>
#include <gmp.h>

int main() {
  mpz_t prime;
  mpz_init(prime);
  mpz_set_ui(prime, 1);
  int i;
  char* num = malloc(4000);
  for(i=0; i<10000; i++) {
    mpz_nextprime(prime, prime);
    printf("%s, ", mpz_get_str(NULL,10,prime));
  }
}

On my 2.33GHz Macbook Pro, it executes as follows:

time ./a.out > /dev/null

real    0m0.033s
user    0m0.029s
sys    0m0.003s

Calculating 1,000,000 primes on the same laptop:

time ./a.out > /dev/null

real    0m14.824s
user    0m14.606s
sys     0m0.086s

GMP is highly optimized for this sort of thing. Unless you really want to understand the algorithms by writing your own, you'd be advised to use libGMP under C.

link|flag
vote up 3 vote down

GateKiller, how about adding a break to that if in the foreach loop? That would speed up things a lot because if like 6 is divisible by 2 you don't need to check with 3 and 5. (I'd vote your solution up anyway if I had enough reputation :-) ...)

ArrayList primeNumbers = new ArrayList();

for(int i = 2; primeNumbers.Count < 10000; i++) {
    bool divisible = false;

    foreach(int number in primeNumbers) {
        if(i % number == 0) {
            divisible = true;
            break;
        }
    }

    if(divisible == false) {
        primeNumbers.Add(i);
        Console.Write(i + " ");
    }
}
link|flag
vote up 1 vote down

Sieve or Eratosthenes is the way to go, because of it's simplicity and speed. My implementation in C

#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <math.h>

int main(void)
{
    unsigned int lim, i, j;

    printf("Find primes upto: ");
    scanf("%d", &lim);
    lim += 1;
    bool *primes = calloc(lim, sizeof(bool));

    unsigned int sqrtlim = sqrt(lim);
    for (i = 2; i <= sqrtlim; i++)
        if (!primes[i])
            for (j = i * i; j < lim; j += i)
                primes[j] = true;

    printf("\nListing prime numbers between 2 and %d:\n\n", lim - 1);
    for (i = 2; i < lim; i++)
        if (!primes[i])
            printf("%d\n", i);

    return 0;
}

CPU Time to find primes (on Pentium Dual Core E2140 1.6 GHz, using single core)

~ 4s for lim = 100,000,000

link|flag
what is the time for lim=1_000_000 ? It can't be both `<1s' and '5s'. – J.F. Sebastian Oct 6 '08 at 18:56
Name primes is misleading, in your code its meaning is_composite_number. You may eliminate the first loop if you replace malloc by calloc. Expression j+=i can overflow for large lim (and you'll miss some primes in that case). – J.F. Sebastian Oct 6 '08 at 19:02
Fixed. < 1s for 100,000, ~5s for 1,000,000 Thanks for suggesting calloc and the alternative array name. I also thought primes[] is quite confusing, but couldn't think of a better name. – Imran Oct 17 '08 at 12:56
Replacing the loop with calloc now gets lim = 100,000,000 done in ~4s – Imran Oct 17 '08 at 15:41
vote up 13 vote down

I recommend a sieve, either the Sieve of Eratosthenes or the Sieve of Atkin.

The sieve or Eratosthenes is probably the most intuitive method of finding a list of primes. Basically you:

  1. Write down a list of numbers from 2 to whatever limit you want, let's say 1000.
  2. Take the first number that isn't crossed off (for the first iteration this is 2) and cross off all multiples of that number from the list.
  3. Repeat step 2 until you reach the end of the list. All the numbers that aren't crossed off are prime.

Obviously there are quite a few optimizations that can be done to make this algorithm work faster, but this is the basic idea.

The sieve of Atkin uses a similar approach, but unfortunately I don't know enough about it to explain it to you. But I do know that the algorithm I linked takes 8 seconds to figure out all the primes up to 1000000000 on an ancient Pentium II-350

Sieve of Eratosthenes Source Code: http://primes.utm.edu/links/programs/sieves/Eratosthenes/C_source_code/

Sieve of Atkin Source Code: http://cr.yp.to/primegen.html

link|flag
primegen is worth a look. – J.F. Sebastian Oct 6 '08 at 19:20
vote up -1 vote down

@engtech: Your regular expression is wrong.

First of all, 1 isn't a prime number.

Second, all the second part of the expression does is check to see if there are a bunch of '1's as the only input.

(Also, that / on the end breaks it.)

link|flag
vote up 2 vote down

I have adapted code found on the CodeProject to create the following:

ArrayList primeNumbers = new ArrayList();

for(int i = 2; primeNumbers.Count < 10000; i++) {
    bool divisible = false;

    foreach(int number in primeNumbers) {
        if(i % number == 0) {
            divisible = true;
        }
    }

    if(divisible == false) {
        primeNumbers.Add(i);
        Console.Write(i + " ");
    }
}

Testing this on my ASP.NET Server took the rountine about 1 minute to run.

link|flag
You can speed that up if you exit that foreach loop when you get to number>squareroot(i). – Clayton Oct 17 '08 at 13:28
vote up 0 vote down

Not efficient at all, but you can use a regular expression to test for prime numbers.

^1?$|^(11+?)\1+$/
link|flag

Your Answer

Get an OpenID
or

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