Generate Abundant Numbers
Generate abundant numbers within a range or find the first N abundant numbers.
What is an Abundant Number?
An abundant number (or excessive number) is a positive integer that is smaller than the sum of its proper divisors. In other words, when you find all positive divisors of the number (excluding the number itself) and sum them up, the resulting sum is strictly greater than the original number.
Mathematically, if $s(n)$ is the sum of proper divisors of $n$, then $n$ is abundant if:
Equivalently, using the divisor sum function $\sigma(n)$ (which is the sum of all divisors including $n$), $n$ is abundant if $\sigma(n) > 2n$.
A Simple Example: Why 12 is Abundant
Let's take the number 12 and find its proper divisors:
- Divisors of 12 are: 1, 2, 3, 4, 6, and 12.
- Proper divisors (excluding 12) are: 1, 2, 3, 4, and 6.
- Summing the proper divisors: $1 + 2 + 3 + 4 + 6 = 16$.
Since 16 is greater than 12 ($16 > 12$), 12 is classified as an abundant number. The amount by which the sum exceeds the original number (in this case, $16 - 12 = 4$) is called the abundance of the number.
Fascinating Properties of Abundant Numbers
- The Smallest Abundant Number: The integer 12 is the smallest abundant number.
- The Smallest Odd Abundant Number: The smallest odd abundant number is 945. Its proper divisors sum to 975.
- Infinite Abundance: There are infinitely many abundant numbers, both even and odd.
- Multiples: Any positive integer multiple of an abundant number is also an abundant number (e.g., since 12 is abundant, 24, 36, 48, etc., are also abundant).
- Multiples of Perfect Numbers: Any positive integer multiple of a perfect number (other than the perfect number itself) is also abundant.
Frequently Asked Questions
What is the difference between abundant, deficient, and perfect numbers?
A number is abundant if the sum of its proper divisors is greater than the number itself (e.g., 12). It is deficient if the sum of proper divisors is less than the number itself (e.g., 8). It is perfect if the sum of proper divisors is exactly equal to the number itself (e.g., 6).
Are there odd abundant numbers?
Yes, although they are much rarer than even abundant numbers. The smallest odd abundant number is 945. Its proper divisors are 1, 3, 5, 7, 9, 15, 21, 27, 35, 45, 63, 105, 135, 189, and 315, which sum to 975.
What is abundance in number theory?
The abundance of a number $n$ is defined as the difference $s(n) - n$, where $s(n)$ is the sum of its proper divisors. For example, the abundance of 12 is $16 - 12 = 4$.
Related tools
Your recent visits