OFFSET
1,2
COMMENTS
Solution for x in x^(x^(e-1)) = e.
(W((y-1)log(z))/((y-1)log(z)))^(1/(1-y)) = e^(W((y-1)log(z))/(y-1)) so that (W(e-1)/(e-1))^(1/(1-e)) = e^(W(e-1)/(e-1)). - Ross La Haye, Aug 27 2008
Consider the expression x^x^x^x... where x appears y times. For, say, y = 4 this type of expression is conventionally evaluated as if bracketed x^(x^(x^x)) and is referred to as a "power tower". However, we can also bracket x^x^x^x from the bottom up, e.g., (x^x)^x)^x = x^(x^3). In general, this bracketing will simplify x^x^x^x... to x^(x^(y-1)) when x appears y times in the expression. Solving the equation x^(x^(y-1)) = z for x gives x = (W((y-1)log(z))/((y-1)log(z)))^(1/(1-y)). And setting y = z = e gives the result indicated by this sequence. Special thanks are due to Mike Wentz for introducing me to the "bottom up" bracketing of x^x^x^x... and the motivation for its investigation.
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..10000
Eric Weisstein, Lambert W-Function
Eric Weisstein, Power Tower
EXAMPLE
1.57844691419127618691147145725058871862508588172697263709178296257...
MATHEMATICA
RealDigits[(ProductLog[E-1]/(E-1))^(1/(1-E)), 10, 111][[1]]
PROG
(PARI) (lambertw(exp(1)-1)/(exp(1)-1))^(1/(1-exp(1))) \\ G. C. Greubel, Mar 02 2018
CROSSREFS
KEYWORD
cons,nonn
AUTHOR
Ross La Haye, Aug 21 2008, Aug 26 2008
EXTENSIONS
More terms from Robert G. Wilson v, Aug 25 2008
STATUS
approved