
		Prime Number Tools by George Gesslein II
		----------------------------------------

 PRIMES
 ------
 This program computes any number of consecutive primes using an extended
sieve algorithm.  Generates up to 14 digit primes.  Typing "primes pal" will
display only palindromic primes.  This new version allows a range to be
specified on the command line.

 TWIN
 ----
 This is a filter program for finding twin primes from the output of
"primes".  Twin primes are two primes that differ in value by 2.  Type
"primes|twin" to use.

 AROUND
 ------
 This program displays the prime factors of the 21 integers closest to and
including the specified number.  A number or number range may be specified on
the command line.

 SUMSQ
 -----
 This program finds the minimum number of positive integers that when squared
and added together, equal the given number.  There is a proof that no more
than 4 squares summed together are required to represent any positive
integer.  The command line may contain integers to find the squares of,
otherwise the program counts up from 0.  If the number of squares is 2 or
less, this program displays all possible combinations, otherwise it just
displays the first combination it finds.
