14、N is the sum of the first K consecutive positive integers, where 101<=K<=150. What is the sum of 1/N?
【答案】2 *( 1/101 — 1/151)
【思路】把first consecutive 理解为是从1开始到k 的数列。
N=(1+K)K/2
1/N=2/K(K+1)=2 * 1/K(K+1)
因为1/K(K+1)=1/K — 1/(K+1)
所以Σ 2/K(K+1)=2 * Σ[1/K —1/(K+1) ]=2 *( 1/101 — 1/151)
晕死,没明白最后一步是怎么求出来的。。。 |