There are 25 prime numbers between 1 and 100. The next primes continue: 53, 59, 61, 67, 71, 73, 79, 83, 89, 97...
Enter any number and click Check. The tool instantly tells you if it is prime or not, and shows the full prime factorization if it is composite.
Enter a start and end number (e.g. 100 to 200) and get a complete list of all prime numbers in that range.
Enter any composite number and get its full prime factorization — the number broken down into its prime factors (e.g. 360 = 2³ × 3² × 5).
Copy a single result or download a full list of primes in a range as a text file for study or reference.
| Fact | Detail |
|---|---|
| Smallest prime | 2 (also the only even prime number) |
| Primes under 10 | 2, 3, 5, 7 (four primes) |
| Primes under 100 | 25 prime numbers |
| Twin primes | Pairs that differ by 2: (3,5), (11,13), (17,19), (41,43)... |
| Mersenne primes | Primes of the form 2ⁿ-1: 3, 7, 31, 127, 8191... |
| Largest known prime | As of 2024: 2^136,279,841-1 (over 41 million digits) |
| Are there infinite primes? | Yes — proven by Euclid around 300 BC |
Before using the tool, try quick checks: if a number ends in 0,2,4,5,6,8 it's NOT prime (divisible by 2 or 5). If its digits sum to a multiple of 3, it's divisible by 3.
RSA encryption — used to secure the internet — relies on the difficulty of factoring very large numbers into their prime factors. The security of HTTPS depends on primes.
The ancient method to find all primes up to N: list numbers, start at 2, and cross out all multiples. Numbers left uncrossed are prime. Still one of the fastest methods today.
Prime factorization is used to find the GCD (Greatest Common Divisor) and LCM (Lowest Common Multiple) of two numbers — essential in simplifying fractions and solving math problems.