What are the divisors of 3997?
1, 7, 571, 3997
- There is a total of 4 positive divisors.
- The sum of these divisors is 4576.
- The arithmetic mean is 1144.
4 odd divisors
1, 7, 571, 3997
How to compute the divisors of 3997?
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 3997 by each of the numbers from 1 to 3997 to determine which ones have a remainder equal to 0.
(where is the integer part of the quotient)
- 3997 / 1 = 3997 (the remainder is 0, so 1 is a divisor of 3997)
- 3997 / 2 = 1998.5 (the remainder is 1, so 2 is not a divisor of 3997)
- 3997 / 3 = 1332.3333333333 (the remainder is 1, so 3 is not a divisor of 3997)
- ...
- 3997 / 3996 = 1.0002502502503 (the remainder is 1, so 3996 is not a divisor of 3997)
- 3997 / 3997 = 1 (the remainder is 0, so 3997 is a divisor of 3997)
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 3997 (i.e. 63.221831672295). 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 )
- 3997 / 1 = 3997 (the remainder is 0, so 1 and 3997 are divisors of 3997)
- 3997 / 2 = 1998.5 (the remainder is 1, so 2 is not a divisor of 3997)
- 3997 / 3 = 1332.3333333333 (the remainder is 1, so 3 is not a divisor of 3997)
- ...
- 3997 / 62 = 64.467741935484 (the remainder is 29, so 62 is not a divisor of 3997)
- 3997 / 63 = 63.444444444444 (the remainder is 28, so 63 is not a divisor of 3997)