Tetration (literally "4th operator iteration") is iterated exponentiation, much like how exponents are iterated multiplying. For example, $2$^^$3$ is the same as $2^{2^2}$, which is $2^4$ or 16. This applies to any two positive real numbers, and possibly even all real numbers.
There are two inverses of tetration, iterated logarithms "super-logarithms" or "tetralogarithms" and iterated roots "super-roots". For instance, the value of $\sqrt{256}_s$ is $4$ because $4$^^$2 = 4^4 = 256$.
It is very difficult to calculate with or approximate either of these inverse operations to tetration. Super-logarithms use some complicated recursive algorithms (see this wiki article), but super-roots are even harder; the example I showed just turned out to be easy-to-find because $256$ is a perfect super-square (that is, $4^4$). I could only manage to find a formula for super square roots on Wikipedia using the Lambert W function. I originally did not know what this Lambert W function was, but soon after I found out it's just the inverse function of $xe^x$. This expression stated that $ssrt(x) = ln(x)/W(ln(x))$.
However, I cannot find a formula or even approximation for higher super-roots at all. I tried using linear approximation along with a Euclidean distance version of linear approximation on $^3\sqrt{2}_s$ and both were very innacurate. I could eventually calculate $^3\sqrt{2}_s$ to 42 digits as $1.4766843373578699470892355853738898365517$ using this high-precision calculator and binary guess-and-check methods, but I still can't seem to find a generic formula or approximation for these super-roots which have orders higher than $2$, so I would like to know if anyone knows of one.