What are the divisors of 4669?

1, 7, 23, 29, 161, 203, 667, 4669

8 odd divisors

1, 7, 23, 29, 161, 203, 667, 4669

How to compute the divisors of 4669?

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.

N mod M = 0

Brute force algorithm

We could start by using a brute-force method which would involve dividing 4669 by each of the numbers from 1 to 4669 to determine which ones have a remainder equal to 0.

Remainder = N ( M × N M )

(where N M is the integer part of the quotient)

  • 4669 / 1 = 4669 (the remainder is 0, so 1 is a divisor of 4669)
  • 4669 / 2 = 2334.5 (the remainder is 1, so 2 is not a divisor of 4669)
  • 4669 / 3 = 1556.3333333333 (the remainder is 1, so 3 is not a divisor of 4669)
  • ...
  • 4669 / 4668 = 1.0002142245073 (the remainder is 1, so 4668 is not a divisor of 4669)
  • 4669 / 4669 = 1 (the remainder is 0, so 4669 is a divisor of 4669)

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 4669 (i.e. 68.330081223426). Indeed, if a number N has a divisor D greater than its square root, then there is necessarily a smaller divisor d such that:

D × d = N

(thus, if N D = d , then N d = D )

  • 4669 / 1 = 4669 (the remainder is 0, so 1 and 4669 are divisors of 4669)
  • 4669 / 2 = 2334.5 (the remainder is 1, so 2 is not a divisor of 4669)
  • 4669 / 3 = 1556.3333333333 (the remainder is 1, so 3 is not a divisor of 4669)
  • ...
  • 4669 / 67 = 69.686567164179 (the remainder is 46, so 67 is not a divisor of 4669)
  • 4669 / 68 = 68.661764705882 (the remainder is 45, so 68 is not a divisor of 4669)