What Is a Factor?
Division either comes out even or it does not. A factor is a number for which it does, and the set of factors of any whole number is finite, knowable and short enough to write down — which is what makes factoring the first move in so much of arithmetic.
Factor, Divisor and Multiple: Three Words, Two Directions
Factor and divisor are interchangeable. MathWorld defines a divisor, also called a factor, of a number n as a number d which divides n, so a worksheet asking for the factors of 60 and a textbook asking for its divisors want the same list. Nothing in the mathematics changes with the word.
- Factor or divisor — divides the number exactly. 12 has six of them: 1, 2, 3, 4, 6, 12.
- Proper factor — every factor except the number itself. 12 has five: 1, 2, 3, 4 and 6.
- Common factor — a number that divides two or more numbers. 12 and 18 share 1, 2, 3 and 6, so the greatest common factor is 6.
- Prime factor — a factor that is itself prime. 12's are 2 and 3, and 12 = 2^2 × 3 records how many of each are needed.
- Multiple — the number multiplied by a whole number. 12, 24, 36, 48 and so on, an infinite list rather than a finite one.
Multiple points the other way. The factors of 12 are 1, 2, 3, 4, 6, 12 — six in total, and the list ends at 12. The multiples of 12 are 12, 24, 36, 48 and onward without end. Every factor of a number is less than or equal to it; every multiple is greater than or equal to it; and the statement "3 is a factor of 12" says exactly the same thing as "12 is a multiple of 3".
The word composite covers everything that is neither prime nor 1: a whole number with more than two factors. From 1 to 100 there are 25 primes, 74 composites and one number, 1, that is neither.
Every Factor Has a Partner
Factors are found in pairs, because a division that comes out even produces two whole numbers at once. Dividing 60 by 4 gives 15, so 4 and 15 are both factors and they were discovered by the same operation. Write the pairs out and the list of 12 factors of 60 collapses into six multiplications: 1×60, 2×30, 3×20, 4×15, 5×12, 6×10.
That pairing is why the search can stop at the square root. √60 is a shade under 7.75, and every pair has one member at or below that line and one at or above it — 1 with 60, 2 with 30, 3 with 20, 4 with 15, 5 with 12, 6 with 10. Testing 1 through 7 finds every pair, so no candidate above 7 needs to be tried at all.
Perfect squares are the one case where the pairing doubles back on itself, because their middle pair is a number multiplied by itself. 36 returns 9 factors and the pairs 1×36, 2×18, 3×12, 4×9, 6×6 — the last one uses 6 twice, so the total is odd. That is the whole reason a factor count is odd: between 1 and 100, the numbers with an odd count are exactly 1, 4, 9, 16, 25, 36, 49, 64, 81, 100, the ten perfect squares.
Prime Factors and the One Factorization That Is Unique
A prime is a positive integer greater than 1 with no positive divisors other than 1 and itself, which in this calculator shows up as a factor count of exactly two. The fundamental theorem of arithmetic then says that every positive integer except 1 can be represented in exactly one way, apart from rearrangement, as a product of one or more primes. There is one prime factorization per number, and this tool prints it.
60 = 2 × 2 × 3 × 5
= 2^2 × 3 × 5
720720 = 2^4 × 3^2 × 5 × 7 × 11 × 13
9999999 = 3^2 × 239 × 4649
The exponent form is a tally, not a shorthand for something looser: 2^2 means the prime 2 appears twice in the multiplication and never a third time. Because the factorization is unique, it is also complete — every factor of 60 is built from the primes 2, 2, 3 and 5, taken with equal or smaller exponents. Choosing none of them gives 1, choosing all of them gives 60, and the other ten choices give the ten factors in between.
This is also the reason 1 is not counted as a prime. MathWorld puts it plainly: if 1 were prime, the statement of the fundamental theorem of arithmetic would have to be modified, since "in exactly one way" would be false because any n = n · 1. Enter 1 here and the panel returns "1 factors" with the factorization written as 1 = 1. Two is the only even prime, and every other prime is odd.
Where a Factor List Actually Gets Used
Factoring is rarely the destination. It is the step that makes the next thing possible, and the same list serves five different jobs:
- Simplifying a fraction. 36/60 needs the largest number dividing both; 36 gives 1, 2, 3, 4, 6, 9, 12, 18, 36 and 60 gives 1, 2, 3, 4, 5, 6, 10, 12, 15, 20, 30, 60, so 12 is the biggest name on both lists and 36/60 reduces to 3/5.
- Finding a common denominator. The prime factorizations do it: 36 = 2^2 × 3^2 and 60 = 2^2 × 3 × 5, so the least common multiple takes each prime at its highest exponent — 2^2 × 3^2 × 5 = 180.
- Splitting into equal groups. 60 students split evenly only in the 12 ways the factor list allows, and the pairs line names them directly: 1×60, 2×30, 3×20, 4×15, 5×12, 6×10.
- Laying out a rectangle. The same pairs are the whole-number rectangles of area 60 — a 5 by 12 seating plan, a 6 by 10 tile grid, a 4 by 15 garden bed.
- Simplifying a radical. √72 needs the square hiding inside 72, and 72 = 2^3 × 3^2 shows it: 2^3 × 3^2 is 36 × 2, so √72 = 6√2.
Factoring a quadratic leans on the list too. To factor x² + 17x + 60 you need two factors of 60 that add to 17, and reading down the pairs — 1×60, 2×30, 3×20, 4×15, 5×12, 6×10 — the sum 5 + 12 = 17 appears in the fifth pair, giving (x + 5)(x + 12).
Every one of those jobs except the last compares factor lists across two or more numbers rather than reading a single list, and that comparison has its own tool in the GCF Calculator.
How Do You Calculate the Factors of a Number?
Test each candidate divisor in turn and keep the ones that divide evenly. The only refinement that matters is knowing when to stop: the search ends at the square root, because every factor above it was already found as the partner of one below it.
The Factor Formula, Written Out
There are two formulas on this page. The first finds the factors; the second counts them without finding any of them at all, working purely from the prime factorization.
THE FACTOR TEST
for i = 1, 2, 3 … up to √n
if n mod i = 0 then i and n ÷ i are both factors of n
HOW MANY FACTORS THERE ARE
n = p1^e1 × p2^e2 × … × pr^er
d(n) = (e1 + 1)(e2 + 1) … (er + 1)
"n mod i" is the remainder after dividing n by i, so the test asks whether the division came out even. Each success banks two factors, which is why the loop only has to reach √n: with n = 60 the loop runs i = 1 to 7, succeeds six times, and each success contributes both i and 60 ÷ i for a total of 12. Testing all the way to 60 would run the loop 60 times instead of 7 and would not turn up a single extra factor.
The counting formula is MathWorld's d(n) = ∏(a + 1) over the exponents of the prime factorization, and it is exact rather than an estimate. It works because a factor is a choice of how many copies of each prime to use: 60 = 2^2 × 3 × 5 offers three choices for the 2s (none, one or two), two for the 3 and two for the 5, and 3 × 2 × 2 = 12.
Counting the Factors Before You List Them
Every row below was checked both ways: the exponent product on the left, the factor count this calculator returned on the right.
| Number | Prime factorization | (exponent + 1) product | Factors returned |
|---|---|---|---|
| 60 | 2^2 × 3 × 5 | 3 × 2 × 2 | 12 |
| 72 | 2^3 × 3^2 | 4 × 3 | 12 |
| 100 | 2^2 × 5^2 | 3 × 3 | 9 |
| 144 | 2^4 × 3^2 | 5 × 3 | 15 |
| 1,024 | 2^10 | 11 | 11 |
| 2,520 | 2^3 × 3^2 × 5 × 7 | 4 × 3 × 2 × 2 | 48 |
| 9,699,690 | 2 × 3 × 5 × 7 × 11 × 13 × 17 × 19 | 2 × 2 × 2 × 2 × 2 × 2 × 2 × 2 | 256 |
| 9,999,999 | 3^2 × 239 × 4649 | 3 × 2 × 2 | 12 |
| 10,000,000 | 2^7 × 5^7 | 8 × 8 | 64 |
| 720,720 | 2^4 × 3^2 × 5 × 7 × 11 × 13 | 5 × 3 × 2 × 2 × 2 × 2 | 240 |
Two rows carry the lesson of the whole table. 9,999,999 is a seven-digit number with only 12 factors, because 3^2 × 239 × 4649 leans on two large primes that each contribute a mere doubling. 720,720 is smaller and has 240, because its primes are small and there are six different ones. Size has almost nothing to do with it; the shape of the factorization has everything to do with it.
Prime powers are the extreme case in the other direction. A number of the form p^e has exactly e + 1 factors however large it is, which is why 1,024 = 2^10 returns 11 and 9,699,690 — the product of the first eight primes, each used once — returns 256 from eight doublings.
Divisibility Rules That Prune the Search
Working by hand, most candidates can be dismissed without any division at all. These are the rules worth memorizing, in the order they come up:
- 2 — the last digit is even (0, 2, 4, 6 or 8).
- 3 — the digits add to a multiple of 3. For 2,520: 2 + 5 + 2 + 0 = 9.
- 4 — the last two digits form a multiple of 4. For 2,520: 20 ÷ 4 = 5.
- 5 — the last digit is 0 or 5.
- 6 — the rules for 2 and for 3 both hold.
- 8 — the last three digits form a multiple of 8. For 2,520: 520 ÷ 8 = 65.
- 9 — the digits add to a multiple of 9. Again 2 + 5 + 2 + 0 = 9.
- 10 — the last digit is 0.
- 11 — alternately subtract and add the digits; the result is a multiple of 11 (including 0). For 2,520: 2 − 5 + 2 − 0 = −1, so 11 is not a factor.
Applied to 2,520 those rules identify 2, 3, 4, 5, 6, 8, 9 and 10 as factors and rule 11 out, before a single long division. Only 7 needs testing by hand, and 2,520 ÷ 7 = 360. The calculator confirms the shape: 2520 = 2^3 × 3^2 × 5 × 7, with 48 factors in total.
There is no shortcut of this kind for 7, and the rules for larger primes cost more effort than the division they replace. That is the practical boundary of hand factoring — the small primes fall out of the digits, and everything else has to be divided.
Step by Step With This Calculator
One field, one button, four lines of output:
- Type a whole number from 1 to 10,000,000 into the Number box.
- Press Calculate. The page opens with the box empty and the panel showing a dash, so nothing is computed until you do.
- Read the four lines: the factor count as the large readout, then the full list, the prime factorization and the factor pairs.
- Use Reset to clear the box and return the panel to its empty state.
The tool does not recalculate while you type. Changing the number leaves the previous answer on screen until you press Calculate again, which is worth knowing when you are working through a list of numbers and the readout looks suspiciously familiar.
Three input rules cover almost every failed attempt. Thousands separators are rejected — 1,000 returns the amber notice while 1000 works. Decimals are rounded to the nearest whole number rather than refused, so 60.4 and 59.6 are both factored as 60. And leading zeros are harmless: 0060 is read as 60.
Worked Example: The Factors of 60
√60 ≈ 7.746, so the loop tests 1 through 7 and no further. Six of those seven candidates divide 60 evenly, and each one banks its partner at the same moment.
i = 1 60 ÷ 1 = 60 ✓ banks 1 and 60 i = 2 60 ÷ 2 = 30 ✓ banks 2 and 30 i = 3 60 ÷ 3 = 20 ✓ banks 3 and 20 i = 4 60 ÷ 4 = 15 ✓ banks 4 and 15 i = 5 60 ÷ 5 = 12 ✓ banks 5 and 12 i = 6 60 ÷ 6 = 10 ✓ banks 6 and 10 i = 7 remainder 4 ✗ stop: 8 × 8 = 64 is already past 60
| Panel line | What it shows for 60 |
|---|---|
| Factors Found (the large readout) | 12 factors |
| The list, printed without a label of its own | 1, 2, 3, 4, 5, 6, 10, 12, 15, 20, 30, 60 |
| Prime factorization | 60 = 2^2 × 3 × 5 |
| Factor pairs | 1×60, 2×30, 3×20, 4×15, 5×12, 6×10 |
Six successful tests, twelve factors, six pairs. The count agrees with the exponent formula on 2^2 × 3 × 5: (2 + 1)(1 + 1)(1 + 1) = 12. The second panel line is the only one with no label in front of it, because the calculator sends the bare list; the other two arrive as a name and a value.
60 earns its place in the worked example. It is the smallest number with 12 factors, and it is the number the hour, the minute and the degree are all still divided on.
Worked Example: A Prime, Where the Search Finds Nothing
97 runs the same loop. √97 ≈ 9.849, so candidates 1 through 9 are tested; 1 succeeds and the other eight fail, which leaves the shortest possible answer.
i = 1 97 ÷ 1 = 97 ✓ banks 1 and 97 i = 2 … 9 ✗ every one leaves a remainder stop: 10 × 10 = 100 is already past 97
| Panel line | What it shows for 97 |
|---|---|
| Factors Found (the large readout) | 2 factors |
| The list | 1, 97 |
| Prime factorization | 97 = 97 — it's prime (only 1 and itself divide it) |
| Factor pairs | 1×97 |
A count of two is the calculator's primality test, and the factorization line adds the sentence in full rather than leaving you to infer it. The same thing happens at the top of the range: 9,999,991 returns "2 factors" and the list 1, 9999991, after testing every candidate up to 3,162 and finding not one of them divides.
Every claim of the form "7 is a factor of 2,520" is one division away from being checked, remainder and all, in the Division Calculator.
Trial division is slow in theory and instant here. Factoring the largest number this tool accepts takes well under a millisecond, because the loop never runs past √10,000,000 — 3,162 iterations at the very most, whatever the number turns out to be.
Factor Chart: Every Number From 1 to 100
The complete reference, generated by running this calculator on each number in turn. The "How many" column is the tool's large readout, and the factorization column is what it prints after the equals sign, with a caret for each exponent.
Factors of 1 to 50
| Number | Factors | How many | Prime factorization |
|---|---|---|---|
| 1 | 1 | 1 | 1 |
| 2 | 1, 2 | 2 | 2 |
| 3 | 1, 3 | 2 | 3 |
| 4 | 1, 2, 4 | 3 | 2^2 |
| 5 | 1, 5 | 2 | 5 |
| 6 | 1, 2, 3, 6 | 4 | 2 × 3 |
| 7 | 1, 7 | 2 | 7 |
| 8 | 1, 2, 4, 8 | 4 | 2^3 |
| 9 | 1, 3, 9 | 3 | 3^2 |
| 10 | 1, 2, 5, 10 | 4 | 2 × 5 |
| 11 | 1, 11 | 2 | 11 |
| 12 | 1, 2, 3, 4, 6, 12 | 6 | 2^2 × 3 |
| 13 | 1, 13 | 2 | 13 |
| 14 | 1, 2, 7, 14 | 4 | 2 × 7 |
| 15 | 1, 3, 5, 15 | 4 | 3 × 5 |
| 16 | 1, 2, 4, 8, 16 | 5 | 2^4 |
| 17 | 1, 17 | 2 | 17 |
| 18 | 1, 2, 3, 6, 9, 18 | 6 | 2 × 3^2 |
| 19 | 1, 19 | 2 | 19 |
| 20 | 1, 2, 4, 5, 10, 20 | 6 | 2^2 × 5 |
| 21 | 1, 3, 7, 21 | 4 | 3 × 7 |
| 22 | 1, 2, 11, 22 | 4 | 2 × 11 |
| 23 | 1, 23 | 2 | 23 |
| 24 | 1, 2, 3, 4, 6, 8, 12, 24 | 8 | 2^3 × 3 |
| 25 | 1, 5, 25 | 3 | 5^2 |
| 26 | 1, 2, 13, 26 | 4 | 2 × 13 |
| 27 | 1, 3, 9, 27 | 4 | 3^3 |
| 28 | 1, 2, 4, 7, 14, 28 | 6 | 2^2 × 7 |
| 29 | 1, 29 | 2 | 29 |
| 30 | 1, 2, 3, 5, 6, 10, 15, 30 | 8 | 2 × 3 × 5 |
| 31 | 1, 31 | 2 | 31 |
| 32 | 1, 2, 4, 8, 16, 32 | 6 | 2^5 |
| 33 | 1, 3, 11, 33 | 4 | 3 × 11 |
| 34 | 1, 2, 17, 34 | 4 | 2 × 17 |
| 35 | 1, 5, 7, 35 | 4 | 5 × 7 |
| 36 | 1, 2, 3, 4, 6, 9, 12, 18, 36 | 9 | 2^2 × 3^2 |
| 37 | 1, 37 | 2 | 37 |
| 38 | 1, 2, 19, 38 | 4 | 2 × 19 |
| 39 | 1, 3, 13, 39 | 4 | 3 × 13 |
| 40 | 1, 2, 4, 5, 8, 10, 20, 40 | 8 | 2^3 × 5 |
| 41 | 1, 41 | 2 | 41 |
| 42 | 1, 2, 3, 6, 7, 14, 21, 42 | 8 | 2 × 3 × 7 |
| 43 | 1, 43 | 2 | 43 |
| 44 | 1, 2, 4, 11, 22, 44 | 6 | 2^2 × 11 |
| 45 | 1, 3, 5, 9, 15, 45 | 6 | 3^2 × 5 |
| 46 | 1, 2, 23, 46 | 4 | 2 × 23 |
| 47 | 1, 47 | 2 | 47 |
| 48 | 1, 2, 3, 4, 6, 8, 12, 16, 24, 48 | 10 | 2^4 × 3 |
| 49 | 1, 7, 49 | 3 | 7^2 |
| 50 | 1, 2, 5, 10, 25, 50 | 6 | 2 × 5^2 |
Rows with a count of 2 are the primes, and for those the panel adds "— it's prime (only 1 and itself divide it)" to the factorization line. Row 1 is the only number in the table that is neither prime nor composite: it has one factor, itself.
Factors of 51 to 100
| Number | Factors | How many | Prime factorization |
|---|---|---|---|
| 51 | 1, 3, 17, 51 | 4 | 3 × 17 |
| 52 | 1, 2, 4, 13, 26, 52 | 6 | 2^2 × 13 |
| 53 | 1, 53 | 2 | 53 |
| 54 | 1, 2, 3, 6, 9, 18, 27, 54 | 8 | 2 × 3^3 |
| 55 | 1, 5, 11, 55 | 4 | 5 × 11 |
| 56 | 1, 2, 4, 7, 8, 14, 28, 56 | 8 | 2^3 × 7 |
| 57 | 1, 3, 19, 57 | 4 | 3 × 19 |
| 58 | 1, 2, 29, 58 | 4 | 2 × 29 |
| 59 | 1, 59 | 2 | 59 |
| 60 | 1, 2, 3, 4, 5, 6, 10, 12, 15, 20, 30, 60 | 12 | 2^2 × 3 × 5 |
| 61 | 1, 61 | 2 | 61 |
| 62 | 1, 2, 31, 62 | 4 | 2 × 31 |
| 63 | 1, 3, 7, 9, 21, 63 | 6 | 3^2 × 7 |
| 64 | 1, 2, 4, 8, 16, 32, 64 | 7 | 2^6 |
| 65 | 1, 5, 13, 65 | 4 | 5 × 13 |
| 66 | 1, 2, 3, 6, 11, 22, 33, 66 | 8 | 2 × 3 × 11 |
| 67 | 1, 67 | 2 | 67 |
| 68 | 1, 2, 4, 17, 34, 68 | 6 | 2^2 × 17 |
| 69 | 1, 3, 23, 69 | 4 | 3 × 23 |
| 70 | 1, 2, 5, 7, 10, 14, 35, 70 | 8 | 2 × 5 × 7 |
| 71 | 1, 71 | 2 | 71 |
| 72 | 1, 2, 3, 4, 6, 8, 9, 12, 18, 24, 36, 72 | 12 | 2^3 × 3^2 |
| 73 | 1, 73 | 2 | 73 |
| 74 | 1, 2, 37, 74 | 4 | 2 × 37 |
| 75 | 1, 3, 5, 15, 25, 75 | 6 | 3 × 5^2 |
| 76 | 1, 2, 4, 19, 38, 76 | 6 | 2^2 × 19 |
| 77 | 1, 7, 11, 77 | 4 | 7 × 11 |
| 78 | 1, 2, 3, 6, 13, 26, 39, 78 | 8 | 2 × 3 × 13 |
| 79 | 1, 79 | 2 | 79 |
| 80 | 1, 2, 4, 5, 8, 10, 16, 20, 40, 80 | 10 | 2^4 × 5 |
| 81 | 1, 3, 9, 27, 81 | 5 | 3^4 |
| 82 | 1, 2, 41, 82 | 4 | 2 × 41 |
| 83 | 1, 83 | 2 | 83 |
| 84 | 1, 2, 3, 4, 6, 7, 12, 14, 21, 28, 42, 84 | 12 | 2^2 × 3 × 7 |
| 85 | 1, 5, 17, 85 | 4 | 5 × 17 |
| 86 | 1, 2, 43, 86 | 4 | 2 × 43 |
| 87 | 1, 3, 29, 87 | 4 | 3 × 29 |
| 88 | 1, 2, 4, 8, 11, 22, 44, 88 | 8 | 2^3 × 11 |
| 89 | 1, 89 | 2 | 89 |
| 90 | 1, 2, 3, 5, 6, 9, 10, 15, 18, 30, 45, 90 | 12 | 2 × 3^2 × 5 |
| 91 | 1, 7, 13, 91 | 4 | 7 × 13 |
| 92 | 1, 2, 4, 23, 46, 92 | 6 | 2^2 × 23 |
| 93 | 1, 3, 31, 93 | 4 | 3 × 31 |
| 94 | 1, 2, 47, 94 | 4 | 2 × 47 |
| 95 | 1, 5, 19, 95 | 4 | 5 × 19 |
| 96 | 1, 2, 3, 4, 6, 8, 12, 16, 24, 32, 48, 96 | 12 | 2^5 × 3 |
| 97 | 1, 97 | 2 | 97 |
| 98 | 1, 2, 7, 14, 49, 98 | 6 | 2 × 7^2 |
| 99 | 1, 3, 9, 11, 33, 99 | 6 | 3^2 × 11 |
| 100 | 1, 2, 4, 5, 10, 20, 25, 50, 100 | 9 | 2^2 × 5^2 |
The second half of the chart holds ten primes against fifteen in the first half. Primes thin out as numbers grow, but they do it slowly and unevenly — 89 and 97 are both here, with seven composites between them.
Four Patterns in the Chart
A chart this size is worth reading for its shape as well as for individual lookups. Four things fall out of it:
- Exactly 25 of the first hundred numbers are prime, each with a count of 2: 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97.
- Exactly 10 have an odd count, and they are precisely the perfect squares: 1, 4, 9, 16, 25, 36, 49, 64, 81, 100.
- The most common count is 4, shared by 32 numbers — every product of two distinct primes, such as 6, 10, 14, 15, 21 and 22, plus the cubes 8 and 27.
- The record for this range is 12 factors, held jointly by five numbers: 60, 72, 84, 90, 96.
The record-holders are worth comparing, because they reach the same total by different routes: 60 = 2^2 × 3 × 5, 72 = 2^3 × 3^2, 84 = 2^2 × 3 × 7, 90 = 2 × 3^2 × 5, 96 = 2^5 × 3. Three small primes with one of them squared, a cube times a square, or a fifth power times a prime — the exponent product lands on 12 every time.
Two rows in the chart are quietly famous. 6 has factors 1, 2, 3, 6, and its factors below itself add to 1 + 2 + 3 = 6; 28 has 1, 2, 4, 7, 14, 28, and 1 + 2 + 4 + 7 + 14 = 28. Numbers that equal the sum of their own smaller factors are called perfect, and they are scarce: after 6 and 28 the next two are 496, which this calculator returns 10 factors for, and 8,128, with 14.
The gaps matter as much as the entries. A count of 11 appears nowhere in the first hundred numbers, because 11 is prime and the only way to reach it is p^10 — the smallest of which is 1,024, ten times past the end of the chart.
Factor Examples: The Numbers People Look Up
Past 100 the lookups cluster: round numbers, powers, and the handful of numbers that carry an unusual quantity of factors. Every row here is this calculator's own output.
Factors of Common Numbers Above 100
| Number | Factors | How many | Prime factorization |
|---|---|---|---|
| 105 | 1, 3, 5, 7, 15, 21, 35, 105 | 8 | 3 × 5 × 7 |
| 108 | 1, 2, 3, 4, 6, 9, 12, 18, 27, 36, 54, 108 | 12 | 2^2 × 3^3 |
| 110 | 1, 2, 5, 10, 11, 22, 55, 110 | 8 | 2 × 5 × 11 |
| 120 | 1, 2, 3, 4, 5, 6, 8, 10, 12, 15, 20, 24, 30, 40, 60, 120 | 16 | 2^3 × 3 × 5 |
| 125 | 1, 5, 25, 125 | 4 | 5^3 |
| 126 | 1, 2, 3, 6, 7, 9, 14, 18, 21, 42, 63, 126 | 12 | 2 × 3^2 × 7 |
| 132 | 1, 2, 3, 4, 6, 11, 12, 22, 33, 44, 66, 132 | 12 | 2^2 × 3 × 11 |
| 135 | 1, 3, 5, 9, 15, 27, 45, 135 | 8 | 3^3 × 5 |
| 140 | 1, 2, 4, 5, 7, 10, 14, 20, 28, 35, 70, 140 | 12 | 2^2 × 5 × 7 |
| 144 | 1, 2, 3, 4, 6, 8, 9, 12, 16, 18, 24, 36, 48, 72, 144 | 15 | 2^4 × 3^2 |
| 150 | 1, 2, 3, 5, 6, 10, 15, 25, 30, 50, 75, 150 | 12 | 2 × 3 × 5^2 |
| 160 | 1, 2, 4, 5, 8, 10, 16, 20, 32, 40, 80, 160 | 12 | 2^5 × 5 |
| 168 | 1, 2, 3, 4, 6, 7, 8, 12, 14, 21, 24, 28, 42, 56, 84, 168 | 16 | 2^3 × 3 × 7 |
| 175 | 1, 5, 7, 25, 35, 175 | 6 | 5^2 × 7 |
| 180 | 1, 2, 3, 4, 5, 6, 9, 10, 12, 15, 18, 20, 30, 36, 45, 60, 90, 180 | 18 | 2^2 × 3^2 × 5 |
| 189 | 1, 3, 7, 9, 21, 27, 63, 189 | 8 | 3^3 × 7 |
| 192 | 1, 2, 3, 4, 6, 8, 12, 16, 24, 32, 48, 64, 96, 192 | 14 | 2^6 × 3 |
| 196 | 1, 2, 4, 7, 14, 28, 49, 98, 196 | 9 | 2^2 × 7^2 |
| 200 | 1, 2, 4, 5, 8, 10, 20, 25, 40, 50, 100, 200 | 12 | 2^3 × 5^2 |
| 210 | 1, 2, 3, 5, 6, 7, 10, 14, 15, 21, 30, 35, 42, 70, 105, 210 | 16 | 2 × 3 × 5 × 7 |
| 216 | 1, 2, 3, 4, 6, 8, 9, 12, 18, 24, 27, 36, 54, 72, 108, 216 | 16 | 2^3 × 3^3 |
| 225 | 1, 3, 5, 9, 15, 25, 45, 75, 225 | 9 | 3^2 × 5^2 |
| 240 | 1, 2, 3, 4, 5, 6, 8, 10, 12, 15, 16, 20, 24, 30, 40, 48, 60, 80, 120, 240 | 20 | 2^4 × 3 × 5 |
| 243 | 1, 3, 9, 27, 81, 243 | 6 | 3^5 |
| 250 | 1, 2, 5, 10, 25, 50, 125, 250 | 8 | 2 × 5^3 |
| 252 | 1, 2, 3, 4, 6, 7, 9, 12, 14, 18, 21, 28, 36, 42, 63, 84, 126, 252 | 18 | 2^2 × 3^2 × 7 |
| 256 | 1, 2, 4, 8, 16, 32, 64, 128, 256 | 9 | 2^8 |
| 270 | 1, 2, 3, 5, 6, 9, 10, 15, 18, 27, 30, 45, 54, 90, 135, 270 | 16 | 2 × 3^3 × 5 |
| 288 | 1, 2, 3, 4, 6, 8, 9, 12, 16, 18, 24, 32, 36, 48, 72, 96, 144, 288 | 18 | 2^5 × 3^2 |
| 294 | 1, 2, 3, 6, 7, 14, 21, 42, 49, 98, 147, 294 | 12 | 2 × 3 × 7^2 |
| 300 | 1, 2, 3, 4, 5, 6, 10, 12, 15, 20, 25, 30, 50, 60, 75, 100, 150, 300 | 18 | 2^2 × 3 × 5^2 |
| 315 | 1, 3, 5, 7, 9, 15, 21, 35, 45, 63, 105, 315 | 12 | 3^2 × 5 × 7 |
| 320 | 1, 2, 4, 5, 8, 10, 16, 20, 32, 40, 64, 80, 160, 320 | 14 | 2^6 × 5 |
| 324 | 1, 2, 3, 4, 6, 9, 12, 18, 27, 36, 54, 81, 108, 162, 324 | 15 | 2^2 × 3^4 |
| 336 | 1, 2, 3, 4, 6, 7, 8, 12, 14, 16, 21, 24, 28, 42, 48, 56, 84, 112, 168, 336 | 20 | 2^4 × 3 × 7 |
| 343 | 1, 7, 49, 343 | 4 | 7^3 |
| 350 | 1, 2, 5, 7, 10, 14, 25, 35, 50, 70, 175, 350 | 12 | 2 × 5^2 × 7 |
| 360 | 1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 15, 18, 20, 24, 30, 36, 40, 45, 60, 72, 90, 120, 180, 360 | 24 | 2^3 × 3^2 × 5 |
| 375 | 1, 3, 5, 15, 25, 75, 125, 375 | 8 | 3 × 5^3 |
| 384 | 1, 2, 3, 4, 6, 8, 12, 16, 24, 32, 48, 64, 96, 128, 192, 384 | 16 | 2^7 × 3 |
| 400 | 1, 2, 4, 5, 8, 10, 16, 20, 25, 40, 50, 80, 100, 200, 400 | 15 | 2^4 × 5^2 |
| 420 | 1, 2, 3, 4, 5, 6, 7, 10, 12, 14, 15, 20, 21, 28, 30, 35, 42, 60, 70, 84, 105, 140, 210, 420 | 24 | 2^2 × 3 × 5 × 7 |
| 432 | 1, 2, 3, 4, 6, 8, 9, 12, 16, 18, 24, 27, 36, 48, 54, 72, 108, 144, 216, 432 | 20 | 2^4 × 3^3 |
| 441 | 1, 3, 7, 9, 21, 49, 63, 147, 441 | 9 | 3^2 × 7^2 |
| 450 | 1, 2, 3, 5, 6, 9, 10, 15, 18, 25, 30, 45, 50, 75, 90, 150, 225, 450 | 18 | 2 × 3^2 × 5^2 |
| 480 | 1, 2, 3, 4, 5, 6, 8, 10, 12, 15, 16, 20, 24, 30, 32, 40, 48, 60, 80, 96, 120, 160, 240, 480 | 24 | 2^5 × 3 × 5 |
| 500 | 1, 2, 4, 5, 10, 20, 25, 50, 100, 125, 250, 500 | 12 | 2^2 × 5^3 |
Numbers ending in a run of zeros are less generous than they look. 500 returns 12 factors while 480, a smaller number, returns 24, because 500 = 2^2 × 5^3 has only two distinct primes while 480 = 2^5 × 3 × 5 has three.
Factors of Larger Round Numbers
| Number | Factors | How many | Prime factorization |
|---|---|---|---|
| 504 | 1, 2, 3, 4, 6, 7, 8, 9, 12, 14, 18, 21, 24, 28, 36, 42, 56, 63, 72, 84, 126, 168, 252, 504 | 24 | 2^3 × 3^2 × 7 |
| 512 | 1, 2, 4, 8, 16, 32, 64, 128, 256, 512 | 10 | 2^9 |
| 540 | 1, 2, 3, 4, 5, 6, 9, 10, 12, 15, 18, 20, 27, 30, 36, 45, 54, 60, 90, 108, 135, 180, 270, 540 | 24 | 2^2 × 3^3 × 5 |
| 576 | 1, 2, 3, 4, 6, 8, 9, 12, 16, 18, 24, 32, 36, 48, 64, 72, 96, 144, 192, 288, 576 | 21 | 2^6 × 3^2 |
| 600 | 1, 2, 3, 4, 5, 6, 8, 10, 12, 15, 20, 24, 25, 30, 40, 50, 60, 75, 100, 120, 150, 200, 300, 600 | 24 | 2^3 × 3 × 5^2 |
| 625 | 1, 5, 25, 125, 625 | 5 | 5^4 |
| 640 | 1, 2, 4, 5, 8, 10, 16, 20, 32, 40, 64, 80, 128, 160, 320, 640 | 16 | 2^7 × 5 |
| 648 | 1, 2, 3, 4, 6, 8, 9, 12, 18, 24, 27, 36, 54, 72, 81, 108, 162, 216, 324, 648 | 20 | 2^3 × 3^4 |
| 675 | 1, 3, 5, 9, 15, 25, 27, 45, 75, 135, 225, 675 | 12 | 3^3 × 5^2 |
| 720 | 1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 15, 16, 18, 20, 24, 30, 36, 40, 45, 48, 60, 72, 80, 90, 120, 144, 180, 240, 360, 720 | 30 | 2^4 × 3^2 × 5 |
| 729 | 1, 3, 9, 27, 81, 243, 729 | 7 | 3^6 |
| 750 | 1, 2, 3, 5, 6, 10, 15, 25, 30, 50, 75, 125, 150, 250, 375, 750 | 16 | 2 × 3 × 5^3 |
| 768 | 1, 2, 3, 4, 6, 8, 12, 16, 24, 32, 48, 64, 96, 128, 192, 256, 384, 768 | 18 | 2^8 × 3 |
| 800 | 1, 2, 4, 5, 8, 10, 16, 20, 25, 32, 40, 50, 80, 100, 160, 200, 400, 800 | 18 | 2^5 × 5^2 |
| 810 | 1, 2, 3, 5, 6, 9, 10, 15, 18, 27, 30, 45, 54, 81, 90, 135, 162, 270, 405, 810 | 20 | 2 × 3^4 × 5 |
| 864 | 1, 2, 3, 4, 6, 8, 9, 12, 16, 18, 24, 27, 32, 36, 48, 54, 72, 96, 108, 144, 216, 288, 432, 864 | 24 | 2^5 × 3^3 |
| 900 | 1, 2, 3, 4, 5, 6, 9, 10, 12, 15, 18, 20, 25, 30, 36, 45, 50, 60, 75, 90, 100, 150, 180, 225, 300, 450, 900 | 27 | 2^2 × 3^2 × 5^2 |
| 945 | 1, 3, 5, 7, 9, 15, 21, 27, 35, 45, 63, 105, 135, 189, 315, 945 | 16 | 3^3 × 5 × 7 |
| 960 | 1, 2, 3, 4, 5, 6, 8, 10, 12, 15, 16, 20, 24, 30, 32, 40, 48, 60, 64, 80, 96, 120, 160, 192, 240, 320, 480, 960 | 28 | 2^6 × 3 × 5 |
| 972 | 1, 2, 3, 4, 6, 9, 12, 18, 27, 36, 54, 81, 108, 162, 243, 324, 486, 972 | 18 | 2^2 × 3^5 |
| 1000 | 1, 2, 4, 5, 8, 10, 20, 25, 40, 50, 100, 125, 200, 250, 500, 1000 | 16 | 2^3 × 5^3 |
The 1,000 row is a useful one to have in full: 16 factors, 2^3 × 5^3, and the pairs 1×1000, 2×500, 4×250, 5×200, 8×125, 10×100, 20×50, 25×40 — eight pairs exactly, which is the most the pairs line prints, so every one of them shows with no ellipsis.
576 and 900 both return odd counts — 21 and 27 — which by the rule above means both are perfect squares, at 24² and 30².
Powers of a Single Prime
When a number is a prime raised to a power, the factor list is just that prime's own powers, and the count is the exponent plus one. Nothing else is possible, because there is no second prime to combine with.
| Number | Prime factorization | How many | Factors |
|---|---|---|---|
| 64 | 2^6 | 7 | 1, 2, 4, 8, 16, 32, 64 |
| 128 | 2^7 | 8 | 1, 2, 4, 8, 16, 32, 64, 128 |
| 256 | 2^8 | 9 | 1, 2, 4, 8, 16, 32, 64, 128, 256 |
| 512 | 2^9 | 10 | 1, 2, 4, 8, 16, 32, 64, 128, 256, 512 |
| 1024 | 2^10 | 11 | 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024 |
| 2048 | 2^11 | 12 | 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048 |
| 4096 | 2^12 | 13 | 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096 |
| 32768 | 2^15 | 16 | 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768 |
| 65536 | 2^16 | 17 | 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768, 65536 |
| 81 | 3^4 | 5 | 1, 3, 9, 27, 81 |
| 243 | 3^5 | 6 | 1, 3, 9, 27, 81, 243 |
| 729 | 3^6 | 7 | 1, 3, 9, 27, 81, 243, 729 |
| 2187 | 3^7 | 8 | 1, 3, 9, 27, 81, 243, 729, 2187 |
| 6561 | 3^8 | 9 | 1, 3, 9, 27, 81, 243, 729, 2187, 6561 |
| 125 | 5^3 | 4 | 1, 5, 25, 125 |
| 625 | 5^4 | 5 | 1, 5, 25, 125, 625 |
| 3125 | 5^5 | 6 | 1, 5, 25, 125, 625, 3125 |
| 343 | 7^3 | 4 | 1, 7, 49, 343 |
| 2401 | 7^4 | 5 | 1, 7, 49, 343, 2401 |
65,536 is 2^16 and returns 17 factors. 720 is more than ninety times smaller and returns 30. A long factor list needs several different primes, not a great many copies of one.
Highly Composite Numbers: Where the Factors Pile Up
A highly composite number has more divisors than every smaller number does. MathWorld gives the start of the sequence as 1, 2, 4, 6, 12, 24, 36, 48, 60, 120, 180, 240, 360, 720, 840, 1260, 1680, 2520, 5040, and running each one through this calculator returns 1, 2, 3, 4, 6, 8, 9, 10, 12, 16, 18, 20, 24, 30, 32, 36, 40, 48, 60 factors respectively — each total larger than any that came before it.
| Number | Factors returned | Prime factorization | First factor pairs |
|---|---|---|---|
| 1 | 1 | 1 | 1×1 |
| 2 | 2 | 2 | 1×2 |
| 4 | 3 | 2^2 | 1×4, 2×2 |
| 6 | 4 | 2 × 3 | 1×6, 2×3 |
| 12 | 6 | 2^2 × 3 | 1×12, 2×6, 3×4 |
| 24 | 8 | 2^3 × 3 | 1×24, 2×12, 3×8, 4×6 |
| 36 | 9 | 2^2 × 3^2 | 1×36, 2×18, 3×12, 4×9, 6×6 |
| 48 | 10 | 2^4 × 3 | 1×48, 2×24, 3×16, 4×12, 6×8 |
| 60 | 12 | 2^2 × 3 × 5 | 1×60, 2×30, 3×20, 4×15, 5×12, 6×10 |
| 120 | 16 | 2^3 × 3 × 5 | 1×120, 2×60, 3×40, 4×30, 5×24, 6×20, 8×15, 10×12 |
| 180 | 18 | 2^2 × 3^2 × 5 | 1×180, 2×90, 3×60, 4×45, 5×36, 6×30, 9×20, 10×18… |
| 240 | 20 | 2^4 × 3 × 5 | 1×240, 2×120, 3×80, 4×60, 5×48, 6×40, 8×30, 10×24… |
| 360 | 24 | 2^3 × 3^2 × 5 | 1×360, 2×180, 3×120, 4×90, 5×72, 6×60, 8×45, 9×40… |
| 720 | 30 | 2^4 × 3^2 × 5 | 1×720, 2×360, 3×240, 4×180, 5×144, 6×120, 8×90, 9×80… |
| 840 | 32 | 2^3 × 3 × 5 × 7 | 1×840, 2×420, 3×280, 4×210, 5×168, 6×140, 7×120, 8×105… |
| 1,260 | 36 | 2^2 × 3^2 × 5 × 7 | 1×1260, 2×630, 3×420, 4×315, 5×252, 6×210, 7×180, 9×140… |
| 1,680 | 40 | 2^4 × 3 × 5 × 7 | 1×1680, 2×840, 3×560, 4×420, 5×336, 6×280, 7×240, 8×210… |
| 2,520 | 48 | 2^3 × 3^2 × 5 × 7 | 1×2520, 2×1260, 3×840, 4×630, 5×504, 6×420, 7×360, 8×315… |
| 5,040 | 60 | 2^4 × 3^2 × 5 × 7 | 1×5040, 2×2520, 3×1680, 4×1260, 5×1008, 6×840, 7×720, 8×630… |
Read down the factorization column and the recipe is obvious: small primes, in descending exponents, with no gaps. 2^4 × 3^2 × 5 × 7 uses 2, 3, 5 and 7 — the four smallest primes — and skips none of them. A number the same size built from larger primes cannot compete: 5,040 returns 60 factors while 5,041, which is 71², returns 3.
These are the numbers that end up in units of measure and in packaging. 12, 24, 60, 360 and 720 all sit on the list, and 2,520 is the smallest number divisible by every one of 1 through 10 — its factorization, 2^3 × 3^2 × 5 × 7, contains exactly what those ten numbers need between them.
That last property of 2,520 is a least common multiple rather than a factor question, and going the other way — from several numbers to the smallest one they all divide into — is the job of the LCM Calculator.
Factor Pairs, Which Are the Equal-Group Splits
The fourth panel line reads as a list of multiplications, and it answers the practical question directly: in how many ways can this quantity be split evenly, and into what sizes?
A pair is a rectangle as much as it is a division. 24 offers 1×24, 2×12, 3×8, 4×6, so a class of 24 makes four equal rows of 6 or six rows of 4, and a tray of 24 tiles lays out as 3 by 8 or 4 by 6.
| Number | Factor pairs as printed | How many factors |
|---|---|---|
| 24 | 1×24, 2×12, 3×8, 4×6 | 8 |
| 30 | 1×30, 2×15, 3×10, 5×6 | 8 |
| 36 | 1×36, 2×18, 3×12, 4×9, 6×6 | 9 |
| 48 | 1×48, 2×24, 3×16, 4×12, 6×8 | 10 |
| 60 | 1×60, 2×30, 3×20, 4×15, 5×12, 6×10 | 12 |
| 72 | 1×72, 2×36, 3×24, 4×18, 6×12, 8×9 | 12 |
| 96 | 1×96, 2×48, 3×32, 4×24, 6×16, 8×12 | 12 |
| 100 | 1×100, 2×50, 4×25, 5×20, 10×10 | 9 |
| 120 | 1×120, 2×60, 3×40, 4×30, 5×24, 6×20, 8×15, 10×12 | 16 |
| 144 | 1×144, 2×72, 3×48, 4×36, 6×24, 8×18, 9×16, 12×12 | 15 |
| 180 | 1×180, 2×90, 3×60, 4×45, 5×36, 6×30, 9×20, 10×18… | 18 |
| 240 | 1×240, 2×120, 3×80, 4×60, 5×48, 6×40, 8×30, 10×24… | 20 |
The last two rows end in an ellipsis because the line stops after eight pairs. 180 has 18 factors and therefore nine pairs, one more than the panel prints; 240 has 20 and ten. The full list on the second line still contains every factor.
How to Read Your Result
There are no bands or categories here — a factor list is not a score. Reading the result is a matter of knowing what each of the four lines is for, what the count on its own already tells you, and where the display stops short of the full answer.
The Four Lines the Panel Returns
Entering 24 and pressing Calculate produces these, in order:
- The large readout under the heading Factors Found: "8 factors". It is a count, not a factor — how many, not which.
- The list itself, printed plain with no label in front of it: 1, 2, 3, 4, 6, 8, 12, 24. Always in ascending order, always starting at 1 and ending at the number itself.
- Prime factorization: 24 = 2^3 × 3. The caret means exponent, so 2^3 is three 2s multiplied together.
- Factor pairs: 1×24, 2×12, 3×8, 4×6. Each pair multiplies back to your number.
The Copy result button below the panel puts the whole result on the clipboard as text, which beats selecting a fifty-entry list by hand.
Line one and line two answer different questions, and they are worth keeping apart. "8 factors" does not mean 8 is a factor of 24, although it happens to be; it means the list on the next line has eight entries in it.
What the Count Alone Tells You
Before reading the list, the count has already settled several questions:
The primality shortcut is the most useful of these. Any number this calculator accepts can be tested by entering it and glancing at the readout: 9,973 returns "2 factors" and 9,999,991 returns "2 factors", so both are prime, while 9,999,999 returns "12 factors" and is emphatically not.
- 1 factor — the number is 1. It is the only number with a single factor, and the panel prints "1 factors", plural and all.
- 2 factors — the number is prime. The factorization line says so outright: "97 = 97 — it's prime (only 1 and itself divide it)".
- 3 factors — the number is the square of a prime. 49 returns 1, 7, 49 and 49 = 7^2; the same holds for 4, 9, 25, 121 and 169.
- An odd count — the number is a perfect square, because its middle pair is a number times itself. 144 returns 15 factors, and 12 × 12 sits at the end of its pairs line.
- An even count — the number is not a perfect square, and every factor has a distinct partner.
- A large count — the number is built from several small primes. 720,720 returns 240 factors from 2^4 × 3^2 × 5 × 7 × 11 × 13.
When the Display Stops Short
Two lines are capped, and both say so where they stop. The list prints the first 48 factors and then adds a count of the rest, while the pairs line prints eight pairs and ends in a bare ellipsis. The third column below is the literal end of the list line: where it carries a "(+N more)", the display was cut.
| Number | Factors | How the list line ends | Pairs shown of the total |
|---|---|---|---|
| 144 | 15 | 18, 24, 36, 48, 72, 144 | 8 of 8 — all of them |
| 2,520 | 48 | 420, 504, 630, 840, 1260, 2520 | 8 of 24 |
| 5,040 | 60 | 210, 240, 252, 280, 315, 336… (+12 more) | 8 of 30 |
| 10,000,000 | 64 | 25000, 31250, 40000, 50000, 62500, 78125… (+16 more) | 8 of 32 |
| 720,720 | 240 | 77, 78, 80, 84, 88, 90… (+192 more) | 8 of 120 |
2,520 is the boundary case for the list: with exactly 48 factors it prints in full, and 5,040 with 60 does not, ending "336… (+12 more)" instead. For the pairs line the boundary is 16 factors — anything with 17 or more loses the tail.
Nothing is lost from the calculation itself, only from the display. The count on the first line is always the true total, and the factorization on the third line is always complete, so a truncated list can be reconstructed from the primes if you need every entry.
The One Message That Replaces an Answer
A single amber notice covers every rejected input: "Check your inputs" above the line "Enter a whole number from 1 to 10,000,000". It appears for six different reasons:
- The box is empty, or holds something that is not a number.
- The value is 0, which every whole number divides — the list would never end.
- The value is negative.
- The value is above 10,000,000. Exactly 10,000,000 is accepted and returns 64 factors.
- The value carries a thousands separator, as in 1,000. Type 1000.
- The value is a decimal below 0.5, such as 0.4, which rounds to 0 and is then rejected.
Rounding is the quiet one, because it does not produce a message. A decimal from 0.5 upward is rounded and factored without comment: 0.5 becomes 1, 59.6 and 60.4 both become 60, and 60.5 becomes 61 — which returns "2 factors" rather than the twelve you were expecting from 60. If a result looks nothing like the number you typed, check whether it had a decimal point in it.
Limits: When This Calculator Does Not Apply
The tool does one job: the positive whole-number factors of one positive whole number at a time. These are the edges of that job.
- One number at a time. There is no second box, so a greatest common factor or a least common multiple has to be assembled by running each number separately and comparing the lists.
- Whole numbers from 1 to 10,000,000 only. Anything larger returns the amber notice, and there is no way to raise the ceiling from the page.
- Decimals are rounded, not refused, and no warning is shown. 60.5 is factored as 61 and returns a completely different answer from 60.
- Negative numbers are rejected. Among the integers −3 divides 12 exactly as 3 does; this calculator lists positive factors only, which is the school convention.
- Zero is rejected. Every whole number divides 0 exactly, so the honest answer is an infinite list and the tool declines to start one.
- The number 1 returns "1 factors", with the plural left in and the factorization printed as 1 = 1. 1 is neither prime nor composite.
- Exponents are printed with a caret, not as superscripts: 144 = 2^4 × 3^2 rather than 2⁴ × 3². The meaning is identical; the typography is not.
- The factor list stops after 48 entries and the pairs line after 8, so the largest results are shown in part rather than in full.
- It factors numbers, not expressions. There is nothing here for x² + 5x + 6, and nothing for polynomials, fractions or algebraic terms.
- It finds factors, not their sums or products. Perfect, abundant and deficient numbers have to be judged by adding the list up yourself.
- The method is trial division, which is why it is capped. It is instant to 10 million and hopeless at the hundreds of digits used in public-key cryptography, where the difficulty of factoring is the point rather than an obstacle.
The expression case is worth naming on its own. Factoring x² + 17x + 60 into (x + 5)(x + 12) starts with the factor pairs of 60, but finishing it — or handling a quadratic whose roots are not whole numbers at all — belongs to the Quadratic Equation Solver.
One thing that looks like a limit is not. A large number is neither a slow one nor a rich one: 9,999,991 is prime, settling in under a millisecond with just two factors, while 720,720 — almost fourteen times smaller — carries 240.