Sequences Questions |
The activity
- This activity displays a sequence of numbers
- The next value in the sequence needs to be determined
- Up to three clues can be viewed to help determine the answer
Find the next value in the sequence:
Sequence: 3 5 2 3 3 5 2 3
This is a periodic sequence with period 4.
Sequence: 3 5 2 3 3 5 2 3
The nth term equals the (n-4)th term.
Sequence: 3 5 2 3 3 5 2 3
An expression for the nth term is u((n-1) mod 4 + 1) where u1, u2, u3 and u4 are the first four terms.
Sequence: 3 5 2 3 3 5 2 3
- This is a periodic sequence with period 4.
- The nth term equals the (n-4)th term.
- An expression for the nth term is u((n-1) mod 4 + 1) where u1, u2, u3 and u4 are the first four terms.
