📜  门| GATE-CS-2014-(Set-3) |第 65 题

📅  最后修改于: 2021-09-27 05:24:43             🧑  作者: Mango

哪个数字不属于以下系列?
2, 5, 10, 17, 26, 37, 50, 64
(一) 17
(乙) 37
(C) 64
(四) 26答案: (C)
解释:

Given series is 2,5,10,17,26,37,50,64.

Here total number of terms are 8..i.e. A(1) to A(8).

For the 1st 7 terms, you can observe the relationship 
between the terms which is 
A(n) = [ A(n-1) - {A(n-1) + A(n-2)} + 2 ] where n >= 3

Now for the 8th term i.e. A(8), this relationship violates.
According to the relationship,
A(8) = [A(7) + {A(7) - A(6)} + 2 ]
= [50 + {50 - 37} + 2 ]
= 50 + 13 + 2
= 65.
But in the series it is 64. Hence 64 doesn't belong to 
the series. 

这个问题的测验