返回题库

AIME 1986 · 第 7 题

AIME 1986 — Problem 7

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

The increasing sequence 1,3,4,9,10,12,131,3,4,9,10,12,13\cdots consists of all those positive integers which are powers of 3 or sums of distinct powers of 3. Find the 100th100^{\text{th}} term of this sequence.

解析

Solutions

Solution 1

Rewrite all of the terms in base 3. Since the numbers are sums of distinct powers of 3, in base 3 each number is a sequence of 1s and 0s (if there is a 2, then it is no longer the sum of distinct powers of 3). Therefore, we can recast this into base 2 (binary) in order to determine the 100th number. 100100 is equal to 64+32+464 + 32 + 4, so in binary form we get 11001001100100. However, we must change it back to base 10 for the answer, which is 36+35+32=729+243+9=9813^6 + 3^5 + 3^2 = 729 + 243 + 9 = \boxed {981}.

Solution 2

Notice that the first term of the sequence is 11, the second is 33, the fourth is 99, and so on. Thus the 64th64th term of the sequence is 729729. Now out of 6464 terms which are of the form 729729 + SS, 3232 of them include 243243 and 3232 do not. The smallest term that includes 243243, i.e. 972972, is greater than the largest term which does not, or 854854. So the 9696th term will be 972972, then 973973, then 975975, then 976976, and finally 981\boxed{981}

Solution 3

After the nnth power of 3 in the sequence, the number of terms after that power but before the (n+1)(n+1)th power of 3 is equal to the number of terms before the nnth power, because those terms after the nnth power are just the nnth power plus all the distinct combinations of powers of 3 before it, which is just all the terms before it. Adding the powers of 33 and the terms that come after them, we see that the 100100th term is after 729729, which is the 6464th term. Also, note that the kkth term after the nnth power of 3 is equal to the power plus the kkth term in the entire sequence. Thus, the 100100th term is 729729 plus the 3636th term. Using the same logic, the 3636th term is 243243 plus the 44th term, 99. We now have 729+243+9=981729+243+9=\boxed{981}

Solution 4

Writing out a few terms of the sequence until we reach the next power of 3 (27), we see that the 2nth2^{nth} term is equal to 3n3^n. From here, we can ballpark the range of the 100th term. The 64th term is 363^6 = 729729 and the 128th term is 373^7 = 21872187. Writing out more terms of the sequence until the next power of 3 again (81) we can see that the (2n2^n+2n+12^{n+1})/2 term is equal to 3n3^n + 3n13^{n-1}. From here, we know that the 96th term is 363^6 + 353^5 = 972972. From here, we can construct the 100th term by following the sequence in increasing order. The 97th term is 972+1=973972 + 1 = 973, the 98th term is 972+3=975972 + 3 = 975, the 99th term is 972+3+1=976972 + 3 + 1 = 976, and finally the 100th term is 972+9=981972 + 9 = \boxed{981}

Solution 5

The number of terms 3n3^n produces includes each power of 3 (1,31,...,3n1, 3^1, ..., 3^n), the sums of two power of 3s(ex. 31+13^1 + 1), three power of 3s (ex. 31+1+3n3^1 + 1 + 3^n), all the way to the sum of them all. Since there are n+1n+1 powers of 3, the one number sum gives us (n+11){n+1\choose 1} terms, the two number (n+12){n+1\choose 2} terms, all the way to the sum of all the powers which gives us (n+1n+1){n+1\choose n+1} terms. Summing all these up gives us 2n+112^{n+1} - 1 ^ {*} according to the theorem

k=0N(Nk)=2N\sum_{k=0}^N{{N}\choose{k}} = 2^N.

Since 262^6 is the greatest power <100<100, then n=5n=5 and the sequence would look like {30,...,353^0, ..., 3^5}, where 353^5 or 243243 would be the 251=632^5 - 1 = 63rd number. The next largest power 729729 would be the 64th number. However, its terms contributed extends beyond 100, so we break it to smaller pieces. Noting that 729729 plus any combination of lower powers 1,31...34{1, 3^1 . . .3^4} is < 729+243729 + 243, so we can add all those terms(251=312^5 - 1 = 31) into our sequence:

{30,...,35,729,729+1,....729+(1+31+...+34)3^0, ..., 3^5, 729, 729 + 1, .... 729 + (1 + 3^1 + . . . +3^4)}

Our sequence now has 63+1+31=9563 + 1 + 31 = 95 terms. The remaining 55 would just be the smallest sums starting with 729+243729 + 243 or 972972:

[972972, 972+1972 + 1, 972+3972 + 3, 972+1+3972+1+3, 972+9972 + 9]

Hence the 100th term would be 972+9=981972 + 9 = \boxed{981}. ~SoilMilk

{}^{*}Note that there isn't a (n+10){n+1\choose 0} as choosing 0 numbers will not give you a term.