OFFSET
0,1
COMMENTS
In C, the unique invariant point of the mapping M(z) = (i+z)^i is also its attractor. The convergence is linear and takes about 1650 iterations to reduce the value of |z - M(z)| by 1000 decimal digits. The imaginary part of the invariant point is in A290410.
LINKS
Stanislav Sykora, Table of n, a(n) for n = 0..2000
Eric Weisstein's World of Mathematics, Complex Exponentiation.
EXAMPLE
0.269293437169311227190868021268862010532911006037684671712716015...
MATHEMATICA
RealDigits[Re[z /. FindRoot[(I + z)^I == z, {z, 0}, WorkingPrecision -> 120]]][[1]] (* Amiram Eldar, May 30 2023 *)
PROG
(PARI) \p 3000 \\ Set precision
M(z)=(z+I)^I; \\ Mapping M
z=1.0; for(k=1, 2000, z=M(z)); \\ Initialize and iterate
d = -floor(log(abs(z-M(z)))/log(10)) \\ A crude convergence test
real(z) \\ The result; keep << d digits, and test for stability.
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Stanislav Sykora, Jul 30 2017
STATUS
approved
