Number Properties Lookup
Look up a number's factors, prime status, divisors, digital root, and notable properties, with the factorisation shown.
🔒 This tool runs entirely in your browser. Your files are never uploaded to a server.
Math & Science
Number Properties Lookup
Frontend preview — no upload or external service.
Properties
5040 = 2⁴ × 3² × 5 × 7. It has 60 divisors — more than any smaller number — making it a highly composite number, and it equals 7 factorial.
How the Number Properties Lookup works
- Enter any whole number.
- Read the prime factorisation first; almost every other property follows from it.
- Use the divisor count when you need a number that divides neatly, which is why highly composite numbers appear in timekeeping and measurement.
The method
The number of divisors follows directly from the prime factorisation: add one to each exponent and multiply.
for n = p₁^a × p₂^b × …, divisor count = (a+1)(b+1)…
5040 = 2⁴·3²·5·7 gives (4+1)(2+1)(1+1)(1+1) = 60 divisors, which is why it was proposed as a base for measurement.
FAQ
Why do highly composite numbers matter?
Because they divide neatly by many factors. It is why 60 seconds, 60 minutes and 360 degrees survive — they split into halves, thirds, quarters, fifths and sixths without fractions.
How is primality tested for large numbers?
Trial division works for small numbers. Beyond that, probabilistic tests like Miller-Rabin are used, which give an answer with a vanishingly small error probability far faster than deterministic methods.
What is a digital root?
The single digit reached by repeatedly summing digits. It equals the number modulo 9 (with 9 in place of 0), which is the basis of the old casting-out-nines arithmetic check.
How we compare
| Feature | Online Tool Store | A graphing calculator | A stats package |
|---|---|---|---|
| Prime factorisation shown | ✓ | Answer only | Yes |
| Divisor count explained | ✓ | ✗ | Sometimes |
| No install | ✓ | ✓ | ✗ |
| Works offline once loaded | ✓ | ✓ | ✗ |
Number Properties Lookup leads with the factorisation, because divisor counts, primality and most other properties fall straight out of it.