Write in recursive form, an=3 a n-1 + 4, a1 =7, for n greater than or equal to 2

What you have is already in recursive form. Each An depends on the previous term.

Now, if you want an explicit formula,

An = 5*3^(n-1) + 2