返回题库

AIME 1995 · 第 13 题

AIME 1995 — Problem 13

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

Let f(n)f(n) be the integer closest to n4.\sqrt[4]{n}. Find k=119951f(k).\sum_{k=1}^{1995}\frac 1{f(k)}.

解析

Solution

When (k12)4n<(k+12)4\left(k - \frac {1}{2}\right)^4 \leq n < \left(k + \frac {1}{2}\right)^4, f(n)=kf(n) = k. Thus there are (k+12)4(k12)4\left \lfloor \left(k + \frac {1}{2}\right)^4 - \left(k - \frac {1}{2}\right)^4 \right\rfloor values of nn for which f(n)=kf(n) = k. Expanding using the binomial theorem,

(k+12)4(k12)4=(k4+2k3+32k2+12k+116)(k42k3+32k212k+116)=4k3+k.\begin{aligned} \left(k + \frac {1}{2}\right)^4 - \left(k - \frac {1}{2}\right)^4 &= \left(k^4 + 2k^3 + \frac 32k^2 + \frac 12k + \frac 1{16}\right) - \left(k^4 - 2k^3 + \frac 32k^2 - \frac 12k + \frac 1{16}\right)\\ &= 4k^3 + k. \end{aligned} Thus, 1k\frac{1}{k} appears in the summation 4k3+k4k^3 + k times, and the sum for each kk is then (4k3+k)1k=4k2+1(4k^3 + k) \cdot \frac{1}{k} = 4k^2 + 1. From k=1k = 1 to k=6k = 6, we get k=164k2+1=364+6=370\sum_{k=1}^{6} 4k^2 + 1 = 364 + 6 = 370 (either adding or using the sum of consecutive squares formula).

But this only accounts for k=16(4k3+k)=4(6(6+1)2)2+6(6+1)2=1764+21=1785\sum_{k = 1}^{6} (4k^3 + k) = 4\left(\frac{6(6+1)}{2}\right)^2 + \frac{6(6+1)}{2} = 1764 + 21 = 1785 terms, so we still have 19951785=2101995 - 1785 = 210 terms with f(n)=7f(n) = 7. This adds 21017=30210 \cdot \frac {1}{7} = 30 to our summation, giving 400\boxed{400}.

Solution 2

This is a pretty easy problem just to bash. Since the max number we can get is 77, we just need to test nn values for 1.5,2.5,3.5,4.5,5.51.5,2.5,3.5,4.5,5.5 and 6.56.5. Then just do how many numbers there are times 1n\frac{1}{\lfloor n \rfloor}, which should be 5+17+37+65+101+145+30=4005+17+37+65+101+145+30 = \boxed{400}