show/hide this revision's text 3 added 86 characters in body

The simplest solution is a pair of mutually recursive functions.

The first function returns all the prime numbers.

  1. Start with a list that consists of 2 and all odd numbers greater than 2.
  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:

  1. Let p equal the first prime number (2).
  2. Take a list of all the primes, starting with p (see above).
  3. 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.

show/hide this revision's text 2 added 12 characters in body

The simplest solution is a pair of mutually recursive functions.

The first function returns all the prime numbers.

  1. Start with a list that consists of 2 and all odd numbers greater than 2.
  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:

  1. Let p equal the first prime number (2).
  2. Take a list of all the primes, starting with p (see above).
  3. If p squared is greater than our number n, then n is prime and therefore its largest and only prime factor is itself.
  4. If n divides p, then p is the largest prime factor of n. The other factors are the prime factors of n divided by p.
  5. Otherwise, let p equal the next prime number and go back to step 2.
show/hide this revision's text 1

The simplest solution is a pair of mutually recursive functions.

The first function returns all the prime numbers.

  1. Start with a list that consists of 2 and all odd numbers greater than 2.
  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:

  1. Let p equal the first prime number (2).
  2. Take a list of all the primes, starting with p (see above).
  3. If p squared is greater than our number n, then n is prime and therefore its only prime factor is itself.
  4. If n divides p, then p is the largest prime factor of n. The other factors are the prime factors of n divided by p.
  5. Otherwise, let p equal the next prime number and go back to step 2.