The simplest solution is a pair of mutually recursive functions.
The first function returns all the prime numbers.
- Start with a list that consists of 2 and all odd numbers greater than 2.
- Remove all numbers that have more than one prime factor (see below), as these numbers are not prime.
The second function returns the prime factors of a given number n, as follows:
- Let p equal the first prime number (2).
- Take a list of all the primes, starting with p (see above).
- If p squared is greater than our number n, then n is prime and therefore its largest and only prime factor is itself. If n divides p divides n, then p is the largest a prime factor of n. The other factors are the prime factors of n divided by p. Go to 2. Otherwise, let p equal the next prime number and go back to step 2.
The largest prime factor of n is the last number given by the second function.
