Since each game costs $4.75, we need to add this quantity to the expression every recursive call. Also, we have that f(0) = 2.75, which is the cost of shoe rental.
If we evaluate n = 1 and n = 2 on the following expression, we have:

notice that on f(2) we have the cost of one game plus the cost of the previous game and the shoe rental
therefore, the recursive equation for f(n) is f(n) = 4.75 + f(n-1)