I see a google search pulls up a lot here but there is a lot of ambiguity on the web. Please do not mark as a duplicate.
I have seen
n log n
and
n ln n
and finally
n log(base2) n
One of the SO answers treats Big O as worst case and states n^2. Worst case is in fact n^2, but Big O does not imply worst case so in this sense it is highly voted but wrong.
To be clear, I want to know the average case and to be clear, this is for time-complexity.