The answer is: T(n) = Θ(n2log n).
a = 2, b = 2, logba = 1, f(n) = n2log n.
f(n) = n2log n = Ω(nc), if c = 2, yes, c > logba = 1, so it is case 3. Then T(n) = Θ(f(n)) = Θ(n2log n).
If f(n) is too large, then f(n) term dominates.
Sometime we can just asymptotically compare f(n) with nlogba to find out which term dominates.