Suppose that the sequence of numbers $a_n$ is given by the recurrence $a_n = $ $4a_n$$_−$$_1$ + n with initial value $a_1 = 0$. Prove that $a_n = Θ(4^n)$.
I know I'm supposed to prove $O(4^n)$ and $\Omega(4^n)$ but I'm not exactly sure how to do that
Actually, we can find an explicit formula for $a_n$, let $b_n=a_n-\frac{1}{3}n-\frac{4}{9}$, then $b_n=4*b_{n-1}$ and $b_1=-\frac{7}{9}$. Therefore $a_n=(-\frac{7}{9})*4^{n-1}+\frac{1}{3}n+\frac{4}{9}$.