I have a recurrence relation that I would like to solve. $T(n)$ belongs to $\Theta(f(n))$.
$T(n) = 2T(\frac{n}{4}) + c$, where $c$ is a constant. The base case, $T(1)$ is a constant as well.
My approach was to let $n = 4^k$, but I guess I got confused with the expansion. Can someone show me the first couple of expansions and the closed form? Would appreciate it as it would help me learn this.
EDIT: My work so far ... $$\begin{align} T(4^k) &= 2&T(4^k) & &+ c \\ &= 2&(2T(4^{k-1}) &+ c) &+c \\ &= 2&(2T(2T(4^{k-2}) + c) &+ c) &+c \end{align}$$