Check the forward differences of the sequence:
22 - 8 = 14
50 - 22 = 28 = 2*14
106 - 50 = 56 = 4*14
218 - 106 = 112 = 8*14
442 - 218 = 224 = 16*14
The differences are the products of increasing powers of 2 and 14:
[tex]a_2-a_1=14\cdot2^0[/tex]
[tex]a_3-a_2=14\cdot2^1[/tex]
[tex]a_4-a_3=14\cdot2^2[/tex]
and so on, with
[tex]a_n-a_{n-1}=14\cdot2^{n-2}[/tex]
[tex]\implies a_n=a_{n-1}+7\cdot2^{n-1}[/tex]
Then the sequence has the recursive definition,
[tex]\boxed{\begin{cases}a_1=8\\a_n=a_{n-1}+7\cdot2^{n-1}&\text{for }n>1\end{cases}}[/tex]