Just a varied bunch of programs that either directly factors numbers or assists with the process.
- WheelTF.c -- A simple factoring program that illustrates the wheel trial division method.
- fermat.c -- Super simple implementation of Fermat's factoring algorithm.
- rho.c -- Super simple implementation of Pollard's Rho factoring algorithm.
- eratosthenes.c -- Straightforward implementation of the Sieve of Eratosthenes with 1 bit per number.
- prime_range.c -- Print a range of prime numbers.
- prime_range2.c -- Faster version of prime_range.c if not printing the whole range starting from 0.
Public Domain