OFFSET
0,1
COMMENTS
This c = |z|, where z is the complex solution of z = i^z or, equivalently, z = i^i^i^...
LINKS
Eric Weisstein's World of Mathematics, Power Tower
FORMULA
c = |i^i^i^...|.
EXAMPLE
0.5675551633069578253846131441924533439 ...
MATHEMATICA
2*I*ProductLog[-I*Pi/2]/Pi // Abs // N[#, 108]& // RealDigits[#][[1]]& (* Jean-François Alcover, Feb 05 2013 *)
PROG
(PARI) my(z="I"); for (i=1, 1000, z = concat(z, "^I")); z = eval(z); sqrt(norml2([real(z), imag(z)])) \\ Michel Marcus, May 12 2023
CROSSREFS
KEYWORD
AUTHOR
Stanislav Sykora, May 17 2012
STATUS
approved