This is what I want to write:
Apparently, the following doesn't work
\sqrt[ \sqrt[\log n]{n} ]{x}
The error is that the argument of \sqrt has an extra }. This seems like a bug to me. Is there a way to write this symbol?
This is what I want to write:
Apparently, the following doesn't work
\sqrt[ \sqrt[\log n]{n} ]{x}
The error is that the argument of \sqrt has an extra }. This seems like a bug to me. Is there a way to write this symbol?
Put the second \sqrt into {...}.
Edit: I've added a possible alternative to the monster.
\documentclass{article}
\usepackage{mathtools}
\begin{document}
\[
\sqrt[{\sqrt[\log n]{n}}]{x}
\]
I prefer this possibile alternative:
\[
{x}^{{\bigl[{n}^{{(\log n)}^{-1}}\bigr]^{-1}}}
\]
\end{document}
\sqrt[{\sqrt[\log n]{n}}]{x}, but are you sure you want that monster? – egreg Mar 30 '17 at 17:35