Tagged Questions
The sieve-of-atkin tag has no wiki summary.
6
votes
3answers
4k views
Sieve of Atkin explanation
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 ...
4
votes
2answers
1k views
C#: Implementation of the Sieve of Atkin
I was wondering if someone here have a good implementation of the Sieve of Atkin that they would like to share.
I am trying to implement it, but can't quite wrap my head around it. Here is what I ...
2
votes
1answer
712 views
Why is my implementation of the Sieve of Atkin overlooking numbers close to the specified limit?
My implementation of Sieve of Atkin either overlooks primes near the limit or composites near the limit. while some limits work and others don't. I'm am completely confused as to what is wrong.
def ...
2
votes
1answer
641 views
C++ Sieve of Atkin overlooks a few prime numbers
Recently I've been working on a C++ prime generator that uses the Sieve of Atkin ( http://en.wikipedia.org/wiki/Sieve_of_atkin ) to generate its primes. My objective is to be able to generate any ...
0
votes
1answer
532 views
C#: How to make Sieve of Atkin incremental
I don't know if this is possible or not, but I just gotta ask. My mathematical and algorithmic skills are kind of failing me here :P
The thing is I now have this class that generates prime numbers up ...