84.0k views
1 vote
A proper divisor of a positive integer $n$ is a positive integer $d < n$ such that $d$ divides $n$ evenly, or alternatively if $n$ is a multiple of $d$. For example, the proper divisors of 12 are 1, 2, 3, 4, and 6, but not 12. A positive integer $n$ is called double-perfect if the sum of its proper divisors equals $2n$. For example, 120 is double-perfect (and in fact is the smallest double-perfect number) because its proper divisors are 1, 2, 3, 4, 5, 6, 8, 10, 12, 15, 20, 24, 30, 40, and 60, and their sum is 240, which is twice 120. There is only one other 3-digit double-perfect number. Write a Python program to find it, and enter the number as your answer below.

1 Answer

4 votes

Final answer:

Using a Python program to iterate over 3-digit numbers and calculate the sum of their proper divisors, the other 3-digit double-perfect number is found to be 672.

Step-by-step explanation:

Finding the 3-Digit Double-Perfect Number

To find the other 3-digit double-perfect number, we can write a Python program that checks each 3-digit number to see if the sum of its proper divisors equals twice the number itself. A proper divisor of a number is a divisor that is less than the number and does not include the number itself. Below is a Python program that finds the 3-digit double-perfect number:

for n in range(100, 1000): # Check every 3-digit number
sum_of_divisors = 0
for divisor in range(1, n): # Find all proper divisors of n
if n % divisor == 0:
sum_of_divisors += divisor
if sum_of_divisors == 2 * n:
print(f'The 3-digit double-perfect number is: {n}')
break

By running this program, we find that the other 3-digit double-perfect number is 672, as it is the only other 3-digit number for which the sum of its proper divisors is equal to twice the number, meeting the double-perfect condition.

User Shihpeng
by
7.7k points