kevincan
The infinite sequence \(a_1\), \(a_2\), \(a_3\), ... is defined by \(a_1 = 3\), \(a_2 = 1\), \(a_3 = 2\), and \(a_4 = -7\).
For each integer \(n ≥ 5\):
if n is not divisible by 4, then \(a_n = a_{(n−4)} + 3\)
if n is divisible by 4, then \(a_n = a_{(n−4)} − 8\)
What is the sum of the first 100 terms of the sequence?
A. 250
B. 275
C. 300
D. 325
E. 400
The first four terms of the sequence is given:
a1 = 3
a2 = 1
a3 = 2
a4 = -7
The sum of these four values =
-1.
Solving using the criteria given we get ,
a5 = 6
a6 = 4
a7 = 5
a8 = -15
The sum of these four values =
0 The next 4 values are (a9, a10, a11, a12) = (9, 8, 7, -23). The sum of these 4 values = (9+8+7-23) =
+1. The next 4 values, just to check the sequence
(a 13, a14, a15, a16) = (12, 10, 11, -31). The sum of these 4 values = (12+10+11-31) =
+2.
So, for every 4 values, the sum gets incremented by +1.
(-1, 0, +1 , +2 , ....... Till what value?)
100 terms divided into blocks of 4, we get 25 blocks.
The initial two values are -1 and 0. So, we are left with 23 more.
(-1, 0, +1 , +2 , ....... +23)
From 1 to 23 , the sum is given by
n * (n+1)/2 = (23*24)/2 = 276
276-1+0 =
275.
OR
(n/2) * ( First term + Last term ) = (25/2) * ( -1 + 23) = 25*11 =
275.
OR
first term = a = -1
difference = d = 1.
Sum = (n/2) * (2a + (n-1)d) = (25/2) * (2*-1 + 24*1)
= (25/2)*22
=
275.
Option B.