I'm really stuck on this recurrence problem. $T(1) = 1$ in this case or for any small constant
T(n) = 2T(n/2) + n/log(n) + n
= 2(2T(n/4) + n/2/log(n/2)) + n/log(n) + n/2 + n
= 4T(n/4) + n/log(n/2) + n/log(n) + n/2 + n/4 + n
= 8T(n/8) + n/log(n/4) + n/log(n/2) + n/2 + n/4 + n/6 + n
= 16T(n/16) + n/log(n/8) + n/log(n/4) + n/log(n/2) + n/log(n) + n/8 + n/4 + n/2 + n
For the most part I believe I expanded it out correctly, now I'm lost as to what the relation is. Now I believe I plug in $2^{k}$ for each n value and find some form of pattern. However I am lost as to what this pattern would look like. My best guess is $T(1) = 1$ therefore $1 + \sum \frac{2^{k}}{\log(2^{k}/2)} + 2^{k}$