What are the divisors of 161?
1, 7, 23, 161
- There is a total of 4 positive divisors.
- The sum of these divisors is 192.
- The arithmetic mean is 48.
4 odd divisors
1, 7, 23, 161
How to compute the divisors of 161?
A number N is said to be divisible by a number M (with M non-zero) if, when we divide N by M, the remainder of the division is zero.
Brute force algorithm
We could start by using a brute-force method which would involve dividing 161 by each of the numbers from 1 to 161 to determine which ones have a remainder equal to 0.
(where is the integer part of the quotient)
- 161 / 1 = 161 (the remainder is 0, so 1 is a divisor of 161)
- 161 / 2 = 80.5 (the remainder is 1, so 2 is not a divisor of 161)
- 161 / 3 = 53.666666666667 (the remainder is 2, so 3 is not a divisor of 161)
- ...
- 161 / 160 = 1.00625 (the remainder is 1, so 160 is not a divisor of 161)
- 161 / 161 = 1 (the remainder is 0, so 161 is a divisor of 161)
Improved algorithm using square-root
However, there is another slightly better approach that reduces the number of iterations by testing only integers less than or equal to the square root of 161 (i.e. 12.68857754045). Indeed, if a number N has a divisor D greater than its square root, then there is necessarily a smaller divisor d such that:
(thus, if , then )
- 161 / 1 = 161 (the remainder is 0, so 1 and 161 are divisors of 161)
- 161 / 2 = 80.5 (the remainder is 1, so 2 is not a divisor of 161)
- 161 / 3 = 53.666666666667 (the remainder is 2, so 3 is not a divisor of 161)
- ...
- 161 / 11 = 14.636363636364 (the remainder is 7, so 11 is not a divisor of 161)
- 161 / 12 = 13.416666666667 (the remainder is 5, so 12 is not a divisor of 161)