|
5 |
edited tags
|
||
|
4 | added 1 characters in body | ||
|
What is the best approach to calculating the largest prime factor of a number? I'm thinking the most efficient would be the following:
I'm basing this assumption on it being easier to calculate the small prime factors. Is this about right? What other approaches should I look into? Edit: I've now realised that my approach is futile if there are more than 2 prime factors in play, since step 2 fails when the result is a product of two other primes, therefore a recursive algorithm is needed. Edit again: And now I've realised thatthis that this does still work, because the last found prime number has to be the highest one, therefore any further testing of the non-prime result from step 2 would result in a smaller prime. |
||||
|
3 |
edited tags
|
||
|
2 | further findings | ||
|
1 |
|
||
