What are the divisors of 1653?
1, 3, 19, 29, 57, 87, 551, 1653
- There is a total of 8 positive divisors.
- The sum of these divisors is 2400.
- The arithmetic mean is 300.
8 odd divisors
1, 3, 19, 29, 57, 87, 551, 1653
How to compute the divisors of 1653?
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 1653 by each of the numbers from 1 to 1653 to determine which ones have a remainder equal to 0.
(where is the integer part of the quotient)
- 1653 / 1 = 1653 (the remainder is 0, so 1 is a divisor of 1653)
- 1653 / 2 = 826.5 (the remainder is 1, so 2 is not a divisor of 1653)
- 1653 / 3 = 551 (the remainder is 0, so 3 is a divisor of 1653)
- ...
- 1653 / 1652 = 1.0006053268765 (the remainder is 1, so 1652 is not a divisor of 1653)
- 1653 / 1653 = 1 (the remainder is 0, so 1653 is a divisor of 1653)
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 1653 (i.e. 40.657102700512). 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 )
- 1653 / 1 = 1653 (the remainder is 0, so 1 and 1653 are divisors of 1653)
- 1653 / 2 = 826.5 (the remainder is 1, so 2 is not a divisor of 1653)
- 1653 / 3 = 551 (the remainder is 0, so 3 and 551 are divisors of 1653)
- ...
- 1653 / 39 = 42.384615384615 (the remainder is 15, so 39 is not a divisor of 1653)
- 1653 / 40 = 41.325 (the remainder is 13, so 40 is not a divisor of 1653)