I'm trying to figure out this recursive problem with induction, and I'm at a loss as to how I'm supposed to make $T(n+1) = n\log n$ , like it it wasn't $n+1$, I could do it but from what I read about induction we have to make it equal to $n\log n$. Usually I find what's in the parenthesis so $T(1)$ $T(n/2)$ but $(n+1)$. I'm not sure how to start.
I've tried watching videos on it but I get stuck at $T(n+1) = 2T(n+1/2)+n+1$. I've seen some people on stack do it but none of them use $T(n+1)$ but I thought induction we had to make sure $(Tn+1) = n\log n$ (or whatever you're trying to prove).
$T(n) = \begin{cases} 0 & n=1 \\ 2T(n/2)+n & n>1\end{cases}$
Prove $T(n) = O(n\log n)$ using induction.