User Rating 0.0 β˜…β˜…β˜…β˜…β˜…
Total Usage 0 times
Between 1 and 10,000
Presets:
Is this tool helpful?

Your feedback helps us improve.

β˜… β˜… β˜… β˜… β˜…

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.

abundant numbers number theory divisor sum sigma function aliquot sum number generator math tool

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:

Οƒ(n) = βˆ‘d | n d

The aliquot sum s(n) equals the sum of proper divisors only:

s(n) = Οƒ(n) βˆ’ n

The abundance of n is defined as:

A(n) = s(n) βˆ’ n = Οƒ(n) βˆ’ 2n

Classification follows a piecewise rule:

{
Abundant if A(n) > 0Perfect if A(n) = 0Deficient if A(n) < 0

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

NumberProper Divisor SumAbundanceDivisorsClassification
121641, 2, 3, 4, 6Abundant
182131, 2, 3, 6, 9Abundant
202221, 2, 4, 5, 10Abundant
2436121, 2, 3, 4, 6, 8, 12Abundant
3042121, 2, 3, 5, 6, 10, 15Abundant
3655191, 2, 3, 4, 6, 9, 12, 18Abundant
4050101, 2, 4, 5, 8, 10, 20Abundant
4254121, 2, 3, 6, 7, 14, 21Abundant
4876281, 2, 3, 4, 6, 8, 12, 16, 24Abundant
5466121, 2, 3, 6, 9, 18, 27Abundant
566481, 2, 4, 7, 8, 14, 28Abundant
60108481, 2, 3, 4, 5, 6, 10, 12, 15, 20, 30Abundant
6678121, 2, 3, 6, 11, 22, 33Abundant
707441, 2, 5, 7, 10, 14, 35Abundant
72123511, 2, 3, 4, 6, 8, 9, 12, 18, 24, 36Abundant
7890121, 2, 3, 6, 13, 26, 39Abundant
80106261, 2, 4, 5, 8, 10, 16, 20, 40Abundant
84140561, 2, 3, 4, 6, 7, 12, 14, 21, 28, 42Abundant
889241, 2, 4, 8, 11, 22, 44Abundant
90144541, 2, 3, 5, 6, 9, 10, 15, 18, 30, 45Abundant
96156601, 2, 3, 4, 6, 8, 12, 16, 24, 32, 48Abundant
100117171, 2, 4, 5, 10, 20, 25, 50Abundant
102114121, 2, 3, 6, 17, 34, 51Abundant
10410621, 2, 4, 8, 13, 26, 52Abundant
108172641, 2, 3, 4, 6, 9, 12, 18, 27, 36, 54Abundant

Frequently Asked Questions

The proper divisors of 12 are 1, 2, 3, 4, 6, summing to 16. Since 16 > 12, the number is abundant with abundance 4. Every integer below 12 is either deficient or perfect (6 is the first perfect number). No odd abundant number exists below 945.
No. The even number 2 has only the proper divisor 1, making it deficient. However, every multiple of 6 greater than 6 is abundant. The density of abundant numbers among all positive integers converges to approximately 24.8% (Davenport, 1933). Even abundant numbers dominate: the first odd abundant number is 945.
Perfect numbers satisfy s(n) = n exactly, meaning abundance A(n) = 0. They are the boundary between deficient and abundant. Only 51 even perfect numbers are known (as of 2024), all of the Euclid-Euler form 2pβˆ’1(2p βˆ’ 1). No odd perfect numbers have been found.
Each candidate n requires O(√n) operations for trial division. For a range [1, N], total work is approximately O(N3/2). Ranges up to 100,000 complete in under one second. Ranges up to 1,000,000 may take 2 - 5 seconds. The tool offloads computation to a Web Worker to prevent UI freezing.
Yes. The first pair of consecutive abundant numbers is (5775, 5776). Consecutive triples also exist. ErdΕ‘s proved that the set of abundant numbers has a Schnirelmann density, implying arbitrarily long runs of consecutive abundant numbers exist, though they become increasingly rare at small magnitudes.
Divisor structure analysis appears in cryptographic key generation (selecting primes with specific divisor properties), error-correcting codes (perfect codes relate to perfect numbers), and scheduling theory (highly composite numbers, a subset of abundant numbers, optimize divisor counts for task allocation). The aliquot sum also drives aliquot sequence analysis, which connects to unsolved problems like the Catalan-Dickson conjecture.