返回题库

AIME 2002 II · 第 5 题

AIME 2002 II — Problem 5

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

Find the sum of all positive integers a=2n3ma=2^n3^m where nn and mm are non-negative integers, for which a6a^6 is not a divisor of 6a6^a.

解析

Solution 1

Substitute a=2n3ma=2^n3^m into a6a^6 and 6a6^a, and find all pairs of non-negative integers (n,m) for which (2n3m)6(2^n3^m)^{6} is not a divisor of 62n3m6^{2^n3^m}

Simplifying both expressions:

26n36m2^{6n} \cdot 3^{6m} is not a divisor of 22n3m32n3m2^{2^n3^m} \cdot 3^{2^n3^m}

Comparing both exponents (noting that there must be either extra powers of 2 or extra powers of 3 in the left expression):

6n>2n3m6n > 2^n3^m OR 6m>2n3m6m > 2^n3^m

Using the first inequality 6n>2n3m6n > 2^n3^m and going case by case starting with n \in {0, 1, 2, 3...}:

n=0: 0>13m0>1 \cdot 3^m which has no solution for non-negative integers m

n=1: 6>23m6 > 2 \cdot 3^m which is true for m=0 but fails for higher integers (1,0)\Rightarrow (1,0)

n=2: 12>43m12 > 4 \cdot 3^m which is true for m=0 but fails for higher integers (2,0)\Rightarrow (2,0)

n=3: 18>83m18 > 8 \cdot 3^m which is true for m=0 but fails for higher integers (3,0)\Rightarrow (3,0)

n=4: 24>163m24 > 16 \cdot 3^m which is true for m=0 but fails for higher integers (4,0)\Rightarrow (4,0)

n=5: 30>323m30 > 32 \cdot 3^m which has no solution for non-negative integers m

There are no more solutions for higher nn, as polynomials like 6n6n grow slower than exponentials like 2n2^n.

Using the second inequality 6m>2n3m6m > 2^n3^m and going case by case starting with m \in {0, 1, 2, 3...}:

m=0: 0>2n10>2^n \cdot 1 which has no solution for non-negative integers n

m=1: 6>2n36>2^n \cdot 3 which is true for n=0 but fails for higher integers (0,1)\Rightarrow (0,1)

m=2: 12>2n912>2^n \cdot 9 which is true for n=0 but fails for higher integers (0,2)\Rightarrow (0,2)

m=3: 18>2n2718>2^n \cdot 27 which has no solution for non-negative integers n

There are no more solutions for higher mm, as polynomials like 6m6m grow slower than exponentials like 3m3^m.

Thus there are six numbers corresponding to (1,0), (2,0), (3,0), (4,0), (0,1), and (0,2). Plugging them back into the original expression, these numbers are 2, 4, 8, 16, 3, and 9, respectively. Their sum is 042\boxed{042}.

Solution 2 (faster and more concise)

Notice that the condition is equivalent to saying

v2(a6)v2(6a)    6nav_2(a^6) \geq v_2(6^a) \implies 6n \geq a v3(a6)v3(6a)    6ma.v_3(a^6) \geq v_3(6^a) \implies 6m \geq a. Notice that we cannot have both expressions to be equality state, as that would result in a6=6a.a^6 = 6^a. Testing, we see the possible pairs (n,m)(n, m) are (1,0),(2,0),(3,0),(4,0),(0,1),(0,2).(1, 0), (2, 0), (3, 0), (4, 0), (0, 1), (0, 2). Since the aa grows much faster than the left-hand side of the above inequalities, these are all possible solutions. Adding, we get 042\boxed{042}.

~Solution by Williamgolly