Let $a_n$ is a sequence of numbers. The firs four numbers are $2,0,1,8$ and each following number is the last digit of the sum of the preceding four numbers. The first ten numbers are $2,0,1,8,1,0,0,9,0,9$. Will the succession $2,0,1,8$ show up again? Will the succession $2,0,1,9$ show in this sequence of numbers?
I couldn't do more.
$2+0+1+8=11$, $\enspace$ $11 \enspace mod \enspace 10=1$,$\enspace$ $a_5=1$
$a_n=(a_{n-1}+a_{n-2}+a_{n-3}+a_{n-4})\enspace mod\enspace10$
Could someone give me an idea?