Answer
A(n) = A(n-1)+0.5 ; A(1) = 2.3
Work Step by Step
The formula for a recursive equation is A(n)=A(1-n)+c (c is the common difference)
We can find c by subtracting the first and second terms from each other.
c=2.8-2.3
c=0.5
This gives us the equation A(n)=A(n-1)+0.5 ; A(1)=2.3
And since we know the first term in the sequence, we have to list in next to the formula.