Explanation
Solution
1. Finding the General Term an
The given recurrence relation is an+2−2an+1+an=1.
Notice that an+2−2an+1+an is the second-order difference. Let's calculate the first few terms:
-
a0=0
-
a1=0
-
For n=0:a2=2a1−a0+1=2(0)−0+1=1
-
For n=1:a3=2a2−a1+1=2(1)−0+1=3
-
For n=2:a4=2a3−a2+1=2(3)−1+1=6
-
For n=3:a5=2a4−a3+1=2(6)−3+1=10
The sequence is 0,0,1,3,6,10,… which are triangular numbers shifted. The general formula for these terms is:
2. Calculating the Sum
We need to find S=∑n=2∞7nan. Substituting an:
S=n=2∑∞2⋅7nn(n−1)=21n=2∑∞7nn(n−1)
Let x=71. The sum becomes 21∑n=2∞n(n−1)xn.
Recall the power series for (1−x)−1=∑n=0∞xn.
Differentiating twice with respect to x:
-
dxd(1−x)−1=(1−x)−2=∑n=1∞nxn−1
-
dx2d2(1−x)−1=2(1−x)−3=∑n=2∞n(n−1)xn−2
To get n(n−1)xn, we multiply by x2:
n=2∑∞n(n−1)xn=(1−x)32x2
3. Final Computation
Substitute x=71 into the formula:
S=21[(1−1/7)32(1/7)2]=(6/7)3(1/49)
S=216/3431/49=491⋅216343
Correct Option: (B)