I'm reading Don Knuth's "Selected Papers on Fun & Games" and early on there's a paper called "Representing numbers using only one 4".
He does 64 and then starts to verify it like this
$$64=\lfloor\sqrt{}\sqrt{}\sqrt{}\sqrt{}\sqrt{}\sqrt{}\sqrt{}\sqrt{}\sqrt{}\lfloor\sqrt{}\sqrt{}\sqrt{}\sqrt{}\sqrt{}\sqrt{}\sqrt{}\sqrt{}\sqrt{}\lfloor\sqrt{}\sqrt{}\sqrt{}\sqrt{}\sqrt{}\sqrt{}\sqrt{}\sqrt{}\sqrt{}\sqrt{}\sqrt{}\sqrt{}\sqrt{}\lfloor\sqrt{}\sqrt{}\sqrt{}\sqrt{}\sqrt{}\sqrt{}\sqrt{}\sqrt{}\lfloor\sqrt{}\sqrt{}\sqrt{}\sqrt{}\sqrt{}\sqrt{}\sqrt{}\sqrt{}\sqrt{}\sqrt{}\sqrt{}\lfloor\sqrt{}\lfloor\sqrt{}\lfloor\sqrt{}\sqrt{}\sqrt{}\sqrt{}\sqrt{}(4!)!\rfloor!\rfloor!\rfloor!\rfloor!\rfloor!\rfloor!\rfloor!\rfloor$$ (In this representation, the notation $\sqrt{}x!$ stands for $\sqrt{}(x!)$, not $ (\sqrt{}x)!$. Parentheses have been placed in the subformula '$(4!)!$' because the unparenthesized expression '$4!!$' traditionally means $4\cdot2$.) To verify this formula we will compute successively the quantities inside each of the nested brackets. The innermost floor brackets represent the number $5$, since$$5^{32} = 232\,83064\,36538\,69628\,90625\\24! = 6204\,48401\,73323\,94393\,60000\\6^{32} = 79586\,61109\,94640\,08843\,91936$$ and hence $\lfloor\sqrt{}\sqrt{}\sqrt{}\sqrt{}\sqrt{}24!\rfloor = 5$.
I understand why $24!$ being between $5^{32}$ and $6^{32}$ is relevant and eventually I'll understand how the floors and the square roots crunch that to a $5$. But why are we raising it to $^{32}$? How could I tell in future when looking at that inner $\lfloor\sqrt{}\sqrt{}\sqrt{}\sqrt{}\sqrt{}24!\rfloor$ that I need to compare this to $5$ and $6$ raised to the $^{32}$nd power?
The motivation here is that taking five square roots is the same as taking a number to the power of $\frac{1}{32}$. Powering numbers to $32$ to remove this is now the obvious next step, and proving that $24!$ is between $5^{32}$ and $6^{32}$ gives the answer of $5$.