Solution 1
When given a sequence problem, one good thing to do is to check if the sequence repeats itself or if there is a pattern.
After computing more values of the sequence, it can be observed that the sequence repeats itself every 10 terms starting at a0.
a0=2, a1=5, a2=8, a3=5, a4=6, a5=10, a6=7, a7=4, a8=7, a9=6, a10=2, a11=5, a12=8, a13=5
We can simplify the expression we need to solve to a8⋅a10⋅a2.
Our answer is 7⋅2⋅8 =112.
Solution 2 (Overkill, but advantageous if numbers are bigger)
Notice that the characteristic polynomial of this is x3−4x2−4x−4≡0(mod11)
Then since x≡1 is a root, using Vieta's formula, the other two roots r,s satisfy r+s≡3 and rs≡4.
Let r=7+d and s=7−d.
We have 49−d2≡4 so d≡1. We found that the three roots of the characteristic polynomial are 1,6,8.
Now we want to express an in an explicit form as a(1n)+b(6n)+c(8n)(mod11).
Plugging in n=0,1,2 we get
(∗)a+b+c≡2,
(∗∗)a+6b+8c≡5,
(∗∗∗)a+3b+9c≡8
2(∗∗∗)−(∗)⟹b+4c≡3 and (∗∗∗)−(∗∗)⟹−3b+c≡3
so a≡6, b≡1, and c≡6
Hence, an≡6+(6n)+6(8n)≡(2)−n(mod10)+(2)3n−1(mod10)−5(mod11)
Therefore
a2018≡4+8−5=7
a2020≡1+6−5=2
a2022≡3+10−5=8
And the answer is 7×2×8=112