What is 360 divisible by?
360 has 24 divisors:
1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 15, 18, 20, 24, 30, 36, 40, 45, 60, 72, 90, 120, 180, 360
Factor pairs
Every divisor d of 360 paired with 360 ÷ d:
| 1 | × | 360 | = | 360 |
| 2 | × | 180 | = | 360 |
| 3 | × | 120 | = | 360 |
| 4 | × | 90 | = | 360 |
| 5 | × | 72 | = | 360 |
| 6 | × | 60 | = | 360 |
| 8 | × | 45 | = | 360 |
| 9 | × | 40 | = | 360 |
| 10 | × | 36 | = | 360 |
| 12 | × | 30 | = | 360 |
| 15 | × | 24 | = | 360 |
| 18 | × | 20 | = | 360 |
Arithmetic properties of 360
τ(360)
=
24
Number of divisors
σ(360)
=
1,170
Sum of divisors
σ*(360)
=
810
Sum of proper divisors
360 is an abundant number — the sum of its proper divisors (810) exceeds 360.
360 is not a perfect square.
Find divisors of another number
Integers from 1 to 10¹² (1,000,000,000,000).
About divisors
What is a divisor?
A divisor (or factor) of a positive integer n is any positive integer d such that n ÷ d leaves no remainder (n mod d = 0). For example, the divisors of 12 are 1, 2, 3, 4, 6, 12 — there are 6 of them.
How is the number of divisors counted?
The divisor function τ(n) (tau) counts all positive divisors of n. If n = p₁^e₁ × p₂^e₂ × … × pₖ^eₖ, then τ(n) = (e₁+1)(e₂+1)…(eₖ+1). For 360 = 2³ × 3² × 5¹: τ(360) = 4 × 3 × 2 = 24.
What is the sum of divisors σ(n)?
The sum-of-divisors function σ(n) (sigma) is the total of all positive divisors of n, computed as σ(n) = ∏ (1 + p + p² + … + p^e) for each prime-power factor. For 360 = 2³ × 3² × 5: σ(360) = 15 × 13 × 6 = 1,170.
Frequently asked questions
Loop from 1 to √n. For each i that divides n exactly, both i and n/i are divisors. This takes at most √(10¹²) = 10⁶ steps, fast enough for any value in this range.
A perfect number is a positive integer equal to the sum of its proper divisors. The smallest is 6 = 1 + 2 + 3. The next are 28, 496, and 8,128. Only 51 perfect numbers are currently known.
An abundant number is one where the sum of its proper divisors exceeds the number itself. For example, 12 has proper divisors 1, 2, 3, 4, 6 whose sum 16 > 12, so 12 is abundant.
Divisors come in pairs (d, n/d). When n is a perfect square, the divisor at the exact square root is paired with itself and counted once — giving an odd total. For example, 36 has 9 divisors (odd).
The common divisors of two integers a and b are exactly the divisors of GCD(a, b). Also, LCM(a, b) = a × b / GCD(a, b).