Solution
The problem gives us a sequence defined by a recursion, so let's calculate a few values to get a feel for how it acts. We aren't given initial values, so let a1=a and a2=b. Then a3=b−a, a4=(b−a)−b=−a, a5=−a−(b−a)=−b, a6=−b−(−a)=a−b, a7=(a−b)−(−b)=a and a8=a−(a−b)=b. Since the sequence is recursively defined by the first 2 terms, after this point it must continue to repeat. Thus, in particular aj+6=aj for all j, and so repeating this n times, aj+6n=aj for all integers n and j.
Because of this, the sum of the first 1492 terms can be greatly simplified: 1488=6⋅248 is the largest multiple of 6 less than 1492, so
i=1∑1492ai=(a1489+a1490+a1491+a1492)+i=1∑1488ai=(a1+a2+a3+a4)+n=0∑247j=1∑6a6n+j
=(a+b+(b−a)+(−a))+n=0∑247j=1∑6aj=2b−a,
where we can make this last step because ∑j=16aj=0 and so the entire second term of our expression is zero.
Similarly, since 1980=6⋅330, ∑i=11985ai=(a1+a2+a3+a4+a5)+∑i=11980ai=a+b+(b−a)+(−a)+(−b)=b−a.
Finally, ∑i=12001ai=a1+a2+a3+∑i=11998ai=a+b+(b−a)=2b.
Then by the givens, 2b−a=1985 and b−a=1492 so b=1985−1492=493 and so the answer is 2⋅493=986.