返回题库

AIME 1987 · 第 3 题

AIME 1987 — Problem 3

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

By a proper divisor of a natural number we mean a positive integral divisor other than 1 and the number itself. A natural number greater than 1 will be called nice if it is equal to the product of its distinct proper divisors. What is the sum of the first ten nice numbers?

解析

Solution 1

Let p(n)p(n) denote the product of the distinct proper divisors of nn. A number nn is nice in one of two instances:

  1. It has exactly two distinct prime divisors.

    If we let n=pqn = pq, where p,qp,q are the prime factors, then its proper divisors are pp and qq, and p(n)=pq=np(n) = p \cdot q = n.

  2. It is the cube of a prime number.

    If we let n=p3n=p^3 with pp prime, then its proper divisors are pp and p2p^2, and p(n)=pp2=np(n) = p \cdot p^2 =n.

We now show that the above are the only two cases. Suppose that another nice number existed that does not fall into one of these two categories. Then we can either express it in the form n=pqrn = pqr (with p,qp,q prime and r>1r > 1) or n=pen = p^e (with e3e \neq 3). In the former case, it suffices to note that p(n)(pr)(qr)=pqr2>pqr=np(n) \ge (pr) \cdot (qr) = pqr^2 > pqr = n.

In the latter case, then p(n)=pp2p(e1)=p(e1)e/2p(n) = p \cdot p^2 \cdots p^{(e-1)} = p^{(e-1)e/2}.

For p(n)=np(n) = n, we need p(e1)e/2=pee2e=2ep^{(e-1)e/2} = p^e \Longrightarrow e^2 - e = 2e \Longrightarrow e=0e = 0 or e=3e = 3.

Since e3e \neq 3, in the case e=0n=1e = 0 \Longrightarrow n = 1 does not work.

Thus, listing out the first ten numbers to fit this form, 23=6, 23=8, 25=10,2 \cdot 3 = 6,\ 2^3 = 8,\ 2 \cdot 5 = 10,  27=14, 35=15, 37=21,\ 2 \cdot 7 = 14,\ 3 \cdot 5 = 15,\ 3 \cdot 7 = 21,  211=22, 213=26,\ 2 \cdot 11 = 22,\ 2 \cdot 13 = 26,  33=27, 311=33\ 3^3 = 27,\ 3 \cdot 11 = 33. Summing these yields 182\boxed{182}.

Solution 2

Alternatively, we could note that nn is only nice when it only has two proper divisors, which, when multiplied, clearly yield nn. We know that when the prime factorization of n=a1b1a2b2a3b3...ambmn = a_1^{b_1} \cdot a_2^{b_2} \cdot a_3^{b_3} . . . \cdot a_m^{b_m}, the number of factors f(n)f(n) of nn is

f(n)=(b1+1)(b2+1)(b3+1)...(bm+1).f(n) = (b_1 + 1)(b_2 +1)(b_3 +1) . . . (b_m +1). Since nn is nice, it may only have 44 factors (11, nn, pp, and qq). This means that f(n)=4f(n) = 4. The number 44 can only be factored into (2)(2)(2)(2) or (4)(1)(4)(1), which means that either b1=1b_1 = 1 and b2=1b_2 = 1, or b1=3b_1 = 3. Therefore the only two cases are n=pqn = pq, or n=p3n = p^3. And then continue.