How to solve the following recurrence relation: $f(n)=2f(n-1)+n\log(n)$ ? I tried to write $f(n-1)=2f(n-2)+(n-1)\log(n-1)$, so
$f(n)=4f(n-2)+2(n-1)\log(n-1)+n\log(n)$
and then the general relation at the $k$'s iteration level is complicated, is there another method to solve this?