A194346 Decimal expansion of h_o(1/17), where h_o(x) is the odd infinite power tower function.
2, 0, 4, 2, 7, 4, 7, 3, 6, 6, 6, 5, 5, 1, 8, 4, 9, 9, 1, 7, 5, 6, 9, 8, 7, 4, 5, 1, 8, 6, 4, 4, 6, 9, 5, 7, 9, 9, 1, 6, 6, 8, 6, 9, 0, 3, 4, 8, 4, 2, 2, 5, 7, 2, 7, 3, 6, 5, 9, 2, 4, 6, 6, 7, 5, 9, 3, 2, 4, 9, 6, 6, 1, 3, 3, 3, 3, 6, 6, 8, 4, 1, 4, 3, 5, 8, 7, 7, 1, 6, 3, 7, 2, 0, 1, 9, 7, 4, 6, 3
Offset: 0
Examples
0.204274736665518499175698745186446957991668690348422572736592466759324966133336...
References
- See the References in Sondow and Marques 2010.
Links
- G. C. Greubel, Table of n, a(n) for n = 0..10000
- J. Sondow and D. Marques, Algebraic and transcendental solutions of some exponential equations, Annales Mathematicae et Informaticae 37 (2010) 151-164; see Definition 4.3, Figure 7, and top of p. 163.
Programs
-
Mathematica
a = N[1/17, 100]; Do[a = (1/17)^(1/17)^a, {3000}]; RealDigits[a, 10, 100] // First RealDigits[ Fold[ N[#2^#1, 128] &, 1/17, Table[1/17, {5710}]], 10, 105][[1]] (* Robert G. Wilson v, Mar 20 2012 *)
-
PARI
solve(x=0,1,17^(-17^-x)-x) \\ Charles R Greathouse IV, Mar 20 2012
Comments