What would be the solution of the following recurrence? $$T(n) = 2T(n-2) + n\log n.$$
I've managed to get:
$$T(n) = 2^{n/2}T(0)+\sum_{i=0}^{n/2} 2^i (n-2i) \log(n-2i). $$
The sum cannot be easily bounded for estimating the recurrence, because part of it increases while the other part decreases as the index grows.