How close is $n $ to $ n \log n$?
I know $\mathcal{O}(n) < \mathcal{O}(n \log n)$
But for some small $\epsilon > 0 , n^{1+\epsilon}=n \log n$. How much small is that $\epsilon$? The reason why i got this doubt is when i was thinking to last case of master theorem $T(n)=aT(n/b) + f(n)$ namely - f(n) is logarithmically larger or asymptotically equal to $n^{\log_b a}$
Well, $\log n = n^{\log_n \log n} = n^{\frac{\log \log n}{\log n}}$, so $\epsilon = \frac{\log \log n}{\log n}$.
I think the important takeaway from this is that $\epsilon$ is smaller than any constant as $n \to \infty$, since $\log\log n \ll \log n$.