What are the divisors of 5491?
1, 17, 19, 289, 323, 5491
- There is a total of 6 positive divisors.
- The sum of these divisors is 6140.
- The arithmetic mean is 1023.3333333333.
6 odd divisors
1, 17, 19, 289, 323, 5491
How to compute the divisors of 5491?
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 5491 by each of the numbers from 1 to 5491 to determine which ones have a remainder equal to 0.
(where is the integer part of the quotient)
- 5491 / 1 = 5491 (the remainder is 0, so 1 is a divisor of 5491)
- 5491 / 2 = 2745.5 (the remainder is 1, so 2 is not a divisor of 5491)
- 5491 / 3 = 1830.3333333333 (the remainder is 1, so 3 is not a divisor of 5491)
- ...
- 5491 / 5490 = 1.0001821493625 (the remainder is 1, so 5490 is not a divisor of 5491)
- 5491 / 5491 = 1 (the remainder is 0, so 5491 is a divisor of 5491)
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 5491 (i.e. 74.101282040191). 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 )
- 5491 / 1 = 5491 (the remainder is 0, so 1 and 5491 are divisors of 5491)
- 5491 / 2 = 2745.5 (the remainder is 1, so 2 is not a divisor of 5491)
- 5491 / 3 = 1830.3333333333 (the remainder is 1, so 3 is not a divisor of 5491)
- ...
- 5491 / 73 = 75.219178082192 (the remainder is 16, so 73 is not a divisor of 5491)
- 5491 / 74 = 74.202702702703 (the remainder is 15, so 74 is not a divisor of 5491)