Using recurrence relation: How many n length series using [0,1,2] the sum of each pair is 3 at the most.
Analyzing the question means that the pair (2,2) where-ever it appear is making the problem.
Then i'm asking myself, How can i, Using 'recursional thinking', solve this kind of question?
Try thinking of it this way:
Suppose that you have an $n-1$ length series. Now, you want to add a new number onto the end of it. If the last digit of your $n-1$ length series is a $2$, then you can only add $0$ or $1$. If it's a $0$ or $1$, then you can add anything.
Let $T_k$ be the number of series of length $k$ ending in $2$, and let $Z_k$ be the number of series of length $k$ ending in $0$ or $1$. Let $N_k=T_k+Z_k$ be the total number of series of length $k$. Then we have
$$ T_{k+1} = Z_k $$ because you can only add a $2$ to the end of a series ending in $0$ or $1$.
$$ Z_{k+1} = 2N_k $$ because you can add either a zero or a 1 onto any series. Now, we have $$ N_{k+1} = T_{k+1} + Z_{k+1} = Z_k + 2N_k = 2N_{k-1}+2N_k $$ So you have your recursion, in the form $$ N_{k+1} = 2(N_k+N_{k-1}) $$ So you just need starting values. Obviously $N_1=3$. Now you can define $N_0=1$ if you don't mind the seemingly-arbitrary choice, or you can note that for length $2$, you have $00,01,02,10,11,12,20,21$, for a total of $8$, and so $N_2=8$.
Note that this satisfies, as $8 = 2(3+1)$.