Bunuel
The tribonacci sequence is a sequence of numbers where each term after the third is the sum of the three preceding terms. List T includes the first 15 numbers of the tribonacci sequence, starting with \(t_1 = 0\), \(t_2 = 0\), and \(t_3 = 1\). How many ways can three terms be selected from List T such that their sum is odd?
A. 28
B. 35
C. 196
D. 224
E. 231
Let's write the first few terms of the series
\(t_1\) =
even\(t_2\) =
even\(t_3\) =
odd\(t_4\) = even + even + odd =
odd\(t_5\) = odd + odd + even =
even\(t_6\) = even + odd + odd =
even\(t_7\) = even + even + odd =
odd\(t_8\) = odd + even + even =
odd
Inference: → Each block of four consecutive numbers in the series has 2 even terms and 2 odd terms.
Hence, in the first 15 terms we have =
Question: → We are asked to select three terms such that the sum is odd
Case 1: Select 2 even terms from 8 available even terms AND Select 1 odd term
The number of ways 2 terms can be selected from 8 available terms = \(^8C_2 \) ways
The number of ways 1 terms can be selected from 1 available terms = \(^7C_1 \) ways
Total = \(\frac{8*7}{2} * 7\) = 196
Case 2: Select 3 odd terms
The number of ways 3 terms can be selected from 7 available terms = \(^7C_3 \) ways
Total = \(\frac{7 * 6 * 5 }{ 3 * 2 * 1}\) = 35
Total Number of ways = 196 + 35 = 231
Option E