返回题库

AIME 2019 II · 第 9 题

AIME 2019 II — Problem 9

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

Call a positive integer nn kk-pretty if nn has exactly kk positive divisors and nn is divisible by kk. For example, 1818 is 66-pretty. Let SS be the sum of positive integers less than 20192019 that are 2020-pretty. Find S20\tfrac{S}{20}.

解析

Solution 1

Every 20-pretty integer can be written in form n=2a5bkn = 2^a 5^b k, where a2a \ge 2, b1b \ge 1, gcd(k,10)=1\gcd(k,10) = 1, and d(n)=20d(n) = 20, where d(n)d(n) is the number of divisors of nn. Thus, we have 20=(a+1)(b+1)d(k)20 = (a+1)(b+1)d(k), using the fact that the divisor function is multiplicative. As (a+1)(b+1)(a+1)(b+1) must be a divisor of 20, there are not many cases to check.

If a+1=4a+1 = 4, then b+1=5b+1 = 5. But this leads to no solutions, as (a,b)=(3,4)(a,b) = (3,4) gives 2354>20192^3 5^4 > 2019.

If a+1=5a+1 = 5, then b+1=2b+1 = 2 or 44. The first case gives n=2451pn = 2^4 \cdot 5^1 \cdot p where pp is a prime other than 2 or 5. Thus we have 80p<2019    p=3,7,11,13,17,19,2380p < 2019 \implies p = 3, 7, 11, 13, 17, 19, 23. The sum of all such nn is 80(3+7+11+13+17+19+23)=744080(3+7+11+13+17+19+23) = 7440. In the second case b+1=4b+1 = 4 and d(k)=1d(k) = 1, and there is one solution n=2453=2000n = 2^4 \cdot 5^3 = 2000.

If a+1=10a+1 = 10, then b+1=2b+1 = 2, but this gives 2951>20192^9 \cdot 5^1 > 2019. No other values for a+1a+1 work.

Then we have S20=80(3+7+11+13+17+19+23)+200020=372+100=472\frac{S}{20} = \frac{80(3+7+11+13+17+19+23) + 2000}{20} = 372 + 100 = \boxed{472}.

-scrabbler94

Solution 2

For nn to have exactly 2020 positive divisors, nn can only take on certain prime factorization forms: namely, p19,p9q,p4q3,p4qrp^{19}, p^9q, p^4q^3, p^4qr where p,q,rp,q,r are primes. No number that is a multiple of 2020 can be expressed in the first form because 20 has two primes in its prime factorization, while the first form has only one, and the only integer divisible by 2020 that has the second form is 2952^{9}5, which is 2560, greater than 20192019.

For the third form, the only 2020-pretty numbers are 2453=20002^45^3=2000 and 2354=50002^35^4=5000, and only 20002000 is small enough.

For the fourth form, any number of the form 245r2^45r where rr is a prime other than 22 or 55 will satisfy the 2020-pretty requirement. Since n=80r<2019n=80r<2019, r25r\le 25. Therefore, rr can take on 3,7,11,13,17,19,3, 7, 11, 13, 17, 19, or 2323.

Thus, S20=2000+80(3+7+11+...+23)20=100+4(3+7+11+...+23)=472\frac{S}{20}=\frac{2000+80(3+7+11+...+23)}{20}=100+4(3+7+11+...+23)=\boxed{472}.

Rephrased for clarity by Afly