You can put this solution on YOUR website! I'll do the next few, you pick it up from there and do the rest. You are given
a[x] = a[x-1] + 2* a[x-2]
To find
a[x] = a[x-1] + 2*a[x-2]
a[3] = a[3-1] + 2*a[3-2]
To find
a[x] = a[x-1] + 2*a[x-2]
a[4] = a[4-1] + 2*a[4-2]
and so on. On each iteration, you bump the number s up by one. You then need the previous two answers in order to solve for the new x.