Homepage › Solution manuals › Ivan Niven › An Introduction to the Theory of Numbers › Exercise 4.2.16 (Perfect numbers)
Exercise 4.2.16 (Perfect numbers)
We say (following Euclid) that is a perfect number if , that is, if is the sum of all its positive divisors other that itself. If is a prime , prove that is a perfect number. Use this result to find three perfect numbers.
Answers
Proof. Suppose that is prime, and put . Since is multiplicative, by Theorem 4.5,
So is a perfect number if is prime.
sage: [2^(n-1) * (2^n -1) for n in range(50) if is_prime(2^n - 1)] [6, 28, 496, 8128, 33550336, 8589869056, 137438691328, 2305843008139952128]
So are perfect numbers. □
The last found Mersenne’s number (October 2024) is , with more than 40,000,000 digits. So
is a (big) perfect number.
See the sequences A000043 and A000396 in the OEIS:
https://oeis.org/A000043 https://oeis.org/A000396