2020 AMC 12B Problem 24

Attempt Problem 24 of the 2020 AMC 12B below, then check your answer against the professionally curated solution from LIVE by Po-Shen Loh. You can also try the full timed exam, view all 2020 AMC 12B solutions, or check the answer key.

All problems are used with official legal permission of the Mathematical Association of America (MAA).

24.

Let D(n)D(n) denote the number of ways of writing the positive integer nn as a product n=f1f2fk,n = f_1 \cdot f_2 \cdots f_k, where k1,k \ge 1, the fif_i are integers strictly greater than 1,1, and the order in which the factors are listed matters (that is, two representations that differ only in the order of the factors are counted as distinct). For example, the number 66 can be written as 6,6, 23,2 \cdot 3, and 32,3 \cdot 2, so D(6)=3.D(6) = 3. What is D(96)?D(96)?

112112

128128

144144

172172

184184

Answer: A
Concepts:recursive countingfactor
Difficulty rating: 2220
Solution:

The first factor f1f_1 can be any divisor d>1,d \gt 1, after which the rest is an ordered factorization of n/d.n/d. So D(n)=dn,d>1D(n/d),D(n) = \sum_{d \mid n,\, d \gt 1} D(n/d), with D(1)=1.D(1) = 1.

Computing over the divisors of 96=253:96 = 2^5\cdot 3: D(2)=D(3)=1,D(2) = D(3) = 1, D(4)=2,D(4) = 2, D(6)=3,D(6) = 3, D(8)=4,D(8) = 4, D(12)=8,D(12) = 8, D(16)=8,D(16) = 8, D(24)=20,D(24) = 20, D(32)=16,D(32) = 16, D(48)=48.D(48) = 48.

Finally D(96)=D(48)+D(32)+D(24)+D(16)+D(12)+D(8)+D(6)+D(4)+D(3)+D(2)+D(1)=48+16+20+8+8+4+3+2+1+1+1=112. \begin{gathered} D(96) = D(48) + D(32) \\ {}+ D(24) + D(16) + D(12) \\ {}+ D(8) + D(6) + D(4) \\ {}+ D(3) + D(2) + D(1) \\ = 48 + 16 + 20 + 8 \\ {}+ 8 + 4 + 3 + 2 \\ {}+ 1 + 1 + 1 = 112. \end{gathered}

Thus, the correct answer is A.

← Problem 23#23
Full Exam

Problem 24 in Other Years