Solve the recursion $a_n=\frac{1}{4}2^{n-1}-1+3a_{n-1}$
I'd know how to solve it if it weren't for that -1. Because of it, I can't divide the particular equation with $2^{n-2}$ to solve it. What can be done here?
Oh, sorry. The starting conditions are $a_3=1$, and by "solve" I mean, find the explicit for of $a_n$ (the non recursive one)
Hint:
Consider $b_n=a_n-\frac{1}{2}$
Can you write a recursive equation for $b_n$?