Divisors Generator
List all positive divisors of N. Shows total count and whether N is prime (only 2 divisors) or perfect.
Quantidade de divisores: — · Soma: — ·
—
Every divisor, and what their sum reveals
The divisors of a number are the integers dividing it without remainder. Listing them by hand gets tedious quickly: 360 has 24, and 720 has 30. The page finds them all and also sums them — because that sum sorts the number into one of three categories the Greeks were already studying, and which still produce open problems.
The search only runs to the square root, and that is where the saving is. Divisors come in pairs multiplying to the number: if 4 divides 100, then 25 divides it too, because 4 times 25 is 100. Find the smaller of each pair and the larger comes free. The one special case is a perfect square, where the root pairs with itself and must not be counted twice.
Comparing the sum of proper divisors — all of them except the number itself — against the number gives the three categories. If the sum equals the number, it is perfect, and 6 is the first: 1 plus 2 plus 3. If it is more, the number is abundant, like 12. If less, deficient, which covers most numbers, including every prime, whose proper divisors always sum to 1.
Frequently asked questions
Why do divisors come in pairs?
Which number has the most divisors?
Do amicable numbers fit into this?
Related Tools
First N Primes Generator
List the first N prime numbers using the Sieve of Eratosthenes. Useful for number-theory exercises, educational cryptography demos and algorithm testing. Runs in your browser.
Prime Factorization Generator
Decompose N into prime factors with exponents (e.g., 360 = 2³·3²·5). Useful for LCM, GCD and number theory.
Fibonacci Generator (first N)
Generate the first N Fibonacci numbers using BigInt for overflow-free output. Useful for didactics, algorithm testing and series analysis.
Perfect Number Generator
List perfect numbers (where the sum of proper divisors equals the number itself) below a ceiling. Examples: 6, 28, 496, 8128.
SVG Optimizer
Reduce SVG file size by removing metadata, comments, editor attributes (Inkscape, Illustrator) and unnecessary whitespace. Processed in your browser.
Sublime Text Snippet Generator
Create a .sublime-snippet XML file with trigger, scope and content. Drop into Packages/User/ in Sublime.