Generate every number up to a limit that sets a new record for positive divisors. Exact calculations stay in your browser.
What makes a number highly composite?
A positive integer n is highly composite when its positive-divisor count is strictly larger than that of every smaller positive integer:
τ(n) > τ(k) for every integer 1 ≤ k < n
These are record holders, not merely numbers with many factors. For example, τ(12) = 6, which beats every earlier count, so 12 is highly composite. The number 18 also has 6 divisors, but it only ties 12 and does not set a new record.
If n = p1a₁p2a₂⋯praᵣ, then:
τ(n) = (a₁ + 1)(a₂ + 1)⋯(aᵣ + 1)
Worked example: why 60 is a divisor record
The prime factorization is 60 = 22 × 3 × 5. Each divisor independently chooses an exponent of 0, 1, or 2 for the prime 2, and an exponent of 0 or 1 for both 3 and 5.
τ(60) = (2 + 1)(1 + 1)(1 + 1) = 3 × 2 × 2 = 12
The preceding highly composite number is 48, which has 10 divisors. No positive integer below 60 has 12 divisors, so 60 sets a new record.
Highly composite number FAQ
What is a highly composite number?
It is a positive integer with strictly more positive divisors than every smaller positive integer. The first values are 1, 2, 4, 6, 12, 24, 36, 48, and 60.
Is 1 a highly composite number?
Yes under the standard record-setting definition used by OEIS A002182 and this finder. It starts the sequence with one divisor, and no smaller positive integer exists.
Are highly composite numbers the same as composite numbers?
No. A composite number merely has more than two positive divisors. A highly composite number must beat every earlier divisor count. Also, 1 and 2 start the highly composite sequence even though neither is composite.
Are ties included?
No. The inequality is strict. For instance, both 12 and 18 have six positive divisors, but only 12 is the first to reach six and therefore the record holder.
Why do highly composite numbers use small primes?
For a fixed exponent pattern, assigning larger exponents to smaller primes minimizes the number without changing its divisor count. A smaller number reaches that divisor count sooner, which is necessary for setting a record.
Is “anti-prime” the same thing?
Yes. “Anti-prime” is an informal name often used for highly composite numbers. It does not mean the number is the opposite of a prime in a formal algebraic sense.
How large can the finder search?
The accepted upper limit is 1 quintillion (1018). Calculations are exact; the limit is chosen to keep generation and rendering practical on typical browsers and mobile devices.
Is my input private?
Yes. Candidate generation, sorting, and record comparison happen locally in your browser. The finder does not upload, store, or add your number to the page URL.