Solution
We find that x5=267 by the recursive formula. Summing the recursions
xnxn−1=xn−1−xn−2+xn−3−xn−4=xn−2−xn−3+xn−4−xn−5
yields xn=−xn−5. Thus xn=(−1)kxn−5k. Since 531=106⋅5+1, 753=150⋅5+3, 975=194⋅5+5, it follows that
x531+x753+x975=(−1)106x1+(−1)150x3+(−1)194x5=211+420+267=898.
Solution Variant
The recursive formula suggests telescoping. Indeed, if we add xn and xn−1, we have xn+xn−1=(xn−1−xn−2+xn−3−xn−4)+(xn−2−xn−3+xn−4−xn−5)=xn−1−xn−5.
Subtracting xn−1 yields xn=−xn−5⟹xn=−(−(xn−10))=xn−10.
Thus,
x531+x753+x975=x1+x3+x5=x1+x3+(x4−x3+x2−x1)=x2+x4=375+523=898.
Notice that we didn't need to use the values of x1 or x3 at all.
Non-Rigorous Solution
Calculate the first few terms:
211,375,420,523,267,−211,−375,−420,−523,…
At this point it is pretty clear that the sequence is periodic with period 10 (one may prove it quite easily like in solution 1) so our answer is obviously 211+420+267=898
~Dhillonr25
Video Solution by OmegaLearn
https://youtu.be/lH-0ul1hwKw?t=870
~ pi_is_3.14