A sequence begins 2, 5, 7, 12, 19, … Each term (after the first two terms) is equal to the sum of the two previous terms. How many of the following statements are true?
I. The 20th term is divisible by 2 II. The 40th term is divisible by 2 III. The 40th term is divisible by 3 IV. The 60th term is divisible by 3
How do we do this? Are there specific properties that we need to know?
Let's work modulo 2 and 3. 2 first.
The first term is 0 mod 2. The next is 1 mod 2. If we continue this pattern, we have:
0, 1, 1, 0, 1, 1, ...
This is easy to prove. Anyway, this makes the 20th term 1 mod 2 and the 40th term 0 mod 2, so I is false and II is true.
Now, modulo 3 we have:
2, 2, 1, 0, 1, 1, 2, 0, 2, 2, ...
This repeats with the sequence 22101120. So the 40th term is 0 mod 3, and the 60th term is also 0 mod 3. So statements III and IV are also true. The answer is 3.