返回题库

AIME 2009 I · 第 7 题

AIME 2009 I — Problem 7

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

The sequence (an)(a_n) satisfies a1=1a_1 = 1 and

5(an+1an)1=1n+235^{(a_{n + 1} - a_n)} - 1 = \frac{1}{n + \frac{2}{3}} for n1n \geq 1. Let kk be the least integer greater than 11 for which aka_k is an integer. Find kk.

解析

Solution

The best way to solve this problem is to get the iterated part out of the exponent:

5(an+1an)=1n+23+15^{(a_{n + 1} - a_n)} = \frac {1}{n + \frac {2}{3}} + 1 5(an+1an)=n+53n+235^{(a_{n + 1} - a_n)} = \frac {n + \frac {5}{3}}{n + \frac {2}{3}} 5(an+1an)=3n+53n+25^{(a_{n + 1} - a_n)} = \frac {3n + 5}{3n + 2} an+1an=log5(3n+53n+2)a_{n + 1} - a_n = \log_5{\left(\frac {3n + 5}{3n + 2}\right)} an+1an=log5(3n+5)log5(3n+2)a_{n + 1} - a_n = \log_5{(3n + 5)} - \log_5{(3n + 2)} Plug in n=1,2,3,4n = 1, 2, 3, 4 to see the first few terms of the sequence:

log55,log58,log511,log514.\log_5{5},\log_5{8}, \log_5{11}, \log_5{14}. We notice that the terms 5,8,11,145, 8, 11, 14 are in arithmetic progression. Since a1=1=log55=log5(3(1)+2)a_1 = 1 = \log_5{5} = \log_5{(3(1) + 2)}, we can easily use induction to show that an=log5(3n+2)a_n = \log_5{(3n + 2)}. So now we only need to find the next value of nn that makes log5(3n+2)\log_5{(3n + 2)} an integer. This means that 3n+23n + 2 must be a power of 55. We test 2525:

3n+2=253n + 2 = 25 3n=233n = 23 This has no integral solutions, so we try 125125:

3n+2=1253n + 2 = 125 3n=1233n = 123 n=041n = \boxed{041}

Solution 2 (Telescoping)

We notice that by multiplying the equation from an arbitrary ana_n all the way to a1a_1, we get:

5ana1=n+231+235^{a_n-a_1}=\dfrac{n+\tfrac23}{1+\tfrac23} This simplifies to

5an=3n+2.5^{a_n}=3n+2. We can now test powers of 55.

55 - that gives us n=1n=1, which is useless.

2525 - that gives a non-integer nn.

125125 - that gives n=41n=\boxed{41}.

-integralarefun

Solution 3 (I did too many FE's)

The given recursion is equivalent to 5an+13(n+1)+2=5an3n+2\frac{5^{a_{n+1}}}{3(n+1)+2}=\frac{5^{a_n}}{3n+2}. By a simple inductive argument, the value 5ak3k+2\frac{5^{a_k}}{3k+2} is constant for all naturals kk. In particular, when k=1k=1, the expression is equal to 11, so 5ak3k+2=1\frac{5^{a_k}}{3k+2}=1 for all naturals kk. Therefore, ak=log5(3k+2)a_k=\log_5(3k+2), and testing powers of 55 yields k=41k=\boxed{41} as the answer, which is when a41=log5(341+2)=log5(125)=3a_{41}=\log_5(3\cdot41+2)=\log_5(125)=3.

~ eevee9406