A(n+1) = A(n)+4 <--- is a way to say, to get the next term, ADD 4 to the current one, whist
A(1) = -2, is a way to say, the first term is -2.

----------------------------------------------------------------------------------------
A(n)= 1/4 * A(n) is just a way of saying, you get the next term by multiplying the current one by 1/4, and
A(1) = 8, simply means the first term's value is 8.
