What are the divisors of 3617?
1, 3617
- There is a total of 2 positive divisors.
- The sum of these divisors is 3618.
- The arithmetic mean is 1809.
2 odd divisors
1, 3617
How to compute the divisors of 3617?
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 3617 by each of the numbers from 1 to 3617 to determine which ones have a remainder equal to 0.
(where is the integer part of the quotient)
- 3617 / 1 = 3617 (the remainder is 0, so 1 is a divisor of 3617)
- 3617 / 2 = 1808.5 (the remainder is 1, so 2 is not a divisor of 3617)
- 3617 / 3 = 1205.6666666667 (the remainder is 2, so 3 is not a divisor of 3617)
- ...
- 3617 / 3616 = 1.0002765486726 (the remainder is 1, so 3616 is not a divisor of 3617)
- 3617 / 3617 = 1 (the remainder is 0, so 3617 is a divisor of 3617)
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 3617 (i.e. 60.14149981502). 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 )
- 3617 / 1 = 3617 (the remainder is 0, so 1 and 3617 are divisors of 3617)
- 3617 / 2 = 1808.5 (the remainder is 1, so 2 is not a divisor of 3617)
- 3617 / 3 = 1205.6666666667 (the remainder is 2, so 3 is not a divisor of 3617)
- ...
- 3617 / 59 = 61.305084745763 (the remainder is 18, so 59 is not a divisor of 3617)
- 3617 / 60 = 60.283333333333 (the remainder is 17, so 60 is not a divisor of 3617)