The following recurrence relation,
$$T(n)=16T(\frac{n}{4}) + n^2$$
has been given to me to be solved via the Master Theorem. I'm pretty sure this is a case 2 situation, since
$$\log_4{16} = 2$$ and
$$\log_n{n^2} = 2$$
Where $b = 4$, $a = 16$, and $c = 2$, such that $f(n) = n^c$
What I'm not sure about is the end runtime complexity.
What I've come up with so far is
$$T(n) = \theta(n^2log_2{n})$$
...since the Master Theorem states that, for case 2 situations, $f(n)$ must be within the set of $O(n^clog^kn)$, where $k$ is some constant in which $k \ge 0$.
My reasoning was to substitute 0 for $k$, which led to $\log_2^1{n}$ in the result, as the result requires that $T(n) = \theta(n^clog_2^{k+1}{n})$.
In a nutshell, while I know the first portion of the analysis is correct, and that this is a case 2 situation, am I correct in the reasoning behind the logarithmic portion in the ending runtime analysis?