Question 1177107
<pre>
2,5,2,9,2,13,2,17,...

The sum of the 50 odd numbered terms 

2,_,2,_,2,_,2,_,...2

is 50*2 = 100  <--sum of odd numbered terms (all 2's)

-------------------------

The sum of the 50 even-numbered terms:

5,__,9,__,13,__,17,__,...

That's 50 terms of an arithmetic sequence with common difference 4:

{{{S[n]=expr(n/2)(2a[1]+(n-1)d)}}}

{{{S[50]=expr(50/2)(2*5+(50-1)4)}}}

{{{S[50]=25(10+(49)4)}}}

{{{s[50]=25(10+196)}}}

{{{s[50]=25(206)}}}

{{{s[50]=5150}}}  <--sum of even-numbered terms.

------------------

Add them together = 100 + 5150 = 5250  <--answer

Edwin</pre>