Evaluate
Fix the direction of evaluation first — it changes the answer. Stacked exponents are right-associative: means , never . Reading left to right here would give , which is wrong by five orders of magnitude. So work from the top down.
Collapse the top of the tower.
The exponent of the base is therefore , and the expression becomes .
Rewrite the base as a power of 2 to keep the numbers manageable. Since , the power-of-a-power rule multiplies exponents:
Recognising is the shortcut — it is a familiar constant, so no long multiplication is needed.
Subtract 1. The subtraction applies to the whole power, not to the exponent:
Verify exactly. Python's arbitrary-precision integers give ✓ and ✓. As a structural check, is the largest unsigned 32-bit integer, and it factors as — a difference of squares once more.
Need to solve a different problem like this? Open the solver →