Abundant Number Generator
Generate abundant numbers with full divisor analysis. Find abundant numbers by count or range with Ο(n) computation, abundance values, and CSV export.
| # | Number | Ο(n) | s(n) | Abundance | Divisors |
|---|
About
An abundant number (or excessive number) is a positive integer n for which the sum of its proper divisors Ο(n) β n exceeds the number itself. The smallest abundant number is 12, whose proper divisors 1, 2, 3, 4, 6 sum to 16, yielding an abundance of 4. Roughly 24.8% of positive integers are abundant. Misidentifying number classification breaks algorithms in cryptography, coding theory, and combinatorial optimization that depend on divisor structure. Every integer greater than 20161 can be expressed as a sum of two abundant numbers (Schur's theorem, proved 1931). This generator computes the full divisor sum Ο(n) via trial division up to βn, guaranteeing correctness. It does not use probabilistic shortcuts. Note: computation time scales with range size. Ranges above 1,000,000 may take several seconds.
Formulas
A positive integer n is classified by comparing the sum of all its positive divisors, denoted Ο(n), against 2n. The divisor sum function is computed as:
The aliquot sum s(n) equals the sum of proper divisors only:
The abundance of n is defined as:
Classification follows a piecewise rule:
The algorithm iterates trial divisors from 1 to βn. For each d that divides n, both d and nd are accumulated (avoiding double-counting when d = βn). This yields O(βn) per number.
Where Ο(n) = sum of all positive divisors of n, s(n) = aliquot sum (proper divisors only), A(n) = abundance (excess over n), d = a positive divisor of n.
Reference Data
| Number | Proper Divisor Sum | Abundance | Divisors | Classification |
|---|---|---|---|---|
| 12 | 16 | 4 | 1, 2, 3, 4, 6 | Abundant |
| 18 | 21 | 3 | 1, 2, 3, 6, 9 | Abundant |
| 20 | 22 | 2 | 1, 2, 4, 5, 10 | Abundant |
| 24 | 36 | 12 | 1, 2, 3, 4, 6, 8, 12 | Abundant |
| 30 | 42 | 12 | 1, 2, 3, 5, 6, 10, 15 | Abundant |
| 36 | 55 | 19 | 1, 2, 3, 4, 6, 9, 12, 18 | Abundant |
| 40 | 50 | 10 | 1, 2, 4, 5, 8, 10, 20 | Abundant |
| 42 | 54 | 12 | 1, 2, 3, 6, 7, 14, 21 | Abundant |
| 48 | 76 | 28 | 1, 2, 3, 4, 6, 8, 12, 16, 24 | Abundant |
| 54 | 66 | 12 | 1, 2, 3, 6, 9, 18, 27 | Abundant |
| 56 | 64 | 8 | 1, 2, 4, 7, 8, 14, 28 | Abundant |
| 60 | 108 | 48 | 1, 2, 3, 4, 5, 6, 10, 12, 15, 20, 30 | Abundant |
| 66 | 78 | 12 | 1, 2, 3, 6, 11, 22, 33 | Abundant |
| 70 | 74 | 4 | 1, 2, 5, 7, 10, 14, 35 | Abundant |
| 72 | 123 | 51 | 1, 2, 3, 4, 6, 8, 9, 12, 18, 24, 36 | Abundant |
| 78 | 90 | 12 | 1, 2, 3, 6, 13, 26, 39 | Abundant |
| 80 | 106 | 26 | 1, 2, 4, 5, 8, 10, 16, 20, 40 | Abundant |
| 84 | 140 | 56 | 1, 2, 3, 4, 6, 7, 12, 14, 21, 28, 42 | Abundant |
| 88 | 92 | 4 | 1, 2, 4, 8, 11, 22, 44 | Abundant |
| 90 | 144 | 54 | 1, 2, 3, 5, 6, 9, 10, 15, 18, 30, 45 | Abundant |
| 96 | 156 | 60 | 1, 2, 3, 4, 6, 8, 12, 16, 24, 32, 48 | Abundant |
| 100 | 117 | 17 | 1, 2, 4, 5, 10, 20, 25, 50 | Abundant |
| 102 | 114 | 12 | 1, 2, 3, 6, 17, 34, 51 | Abundant |
| 104 | 106 | 2 | 1, 2, 4, 8, 13, 26, 52 | Abundant |
| 108 | 172 | 64 | 1, 2, 3, 4, 6, 9, 12, 18, 27, 36, 54 | Abundant |