1
vote
10answers
2k views
Fastest way to calculate primes in C#?
I actually have an answer to my question but it is not parallelized so I am interested in ways to improve the algorithm. Anyway it might be useful as-is for some people.
int Until = …
0
votes
Prime factors
This is probably not always faster but more optimistic about that you find a big prime divisor:
N is your number
If it is prime then return(N)
…
