Skip to content

Instantly share code, notes, and snippets.

@mike-anderson
Created June 22, 2013 17:00
Show Gist options
  • Save mike-anderson/5841584 to your computer and use it in GitHub Desktop.
Save mike-anderson/5841584 to your computer and use it in GitHub Desktop.
incremental sieve of Eratosthenes Based on the python implementation https://gist.github.com/Jach/1761175
sieve = function (size) {
var primes = [],
i = 2,
nonprimes = {};
while (primes.length < size) {
if (nonprimes[i] == undefined) {
primes.push(i);
nonprimes[i*i] = [i];
} else {
var primefactors = nonprimes[i];
primefactors.forEach(function (prime) {
if (nonprimes[i+prime] == undefined) {
nonprimes[i+prime] = [];
}
nonprimes[i+prime].push(prime);
});
//save some memory and some search time
delete nonprimes[i];
}
i=i+1;
}
return primes
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment