StepWorking
01Given
The series is 51+652+3253+10254+25015+… and its sum of the first 10 terms is nm where gcd(m,n)=1.
02Goal
Find the value of m+n.
03Approach
Identify the general term Tn. The numerators are n. The denominators are 5,65,325,1025,2501, which match 4n4+1. Factor the denominator using Sophie Germain's identity: 4n4+1=(2n2+1)2−(2n)2=(2n2−2n+1)(2n2+2n+1). Express Tn as partial fractions and telescope the sum.
04Execute
Write Tn=4n4+1n=41[(2n2−2n+1)(2n2+2n+1)(2n2+2n+1)−(2n2−2n+1)]=41[2n2−2n+11−2n2+2n+11]. Let f(n)=2n2−2n+1. Then f(n+1)=2(n+1)2−2(n+1)+1=2n2+2n+1.
05Execute
Sum Tn from n=1 to 10: S10=41∑n=110[f(n)1−f(n+1)1]=41[f(1)1−f(11)1]. Since f(1)=2(1)2−2(1)+1=1 and f(11)=2(10)2+2(10)+1=221, we have S10=41(1−2211)=41×221220=22155.
06Execute
Check if 55 and 221 are co-prime: 55=5×11. 221=13×17. Thus gcd(55,221)=1, so m=55 and n=221. Hence m+n=55+221=276.
✓Verify
Check for n=1: S1=41(1−51)=51, matching the first term. For n=2: S2=51+652=6515=133; from the formula 41(1−131)=133. Formula holds consistently.