OFFSET
0,1
REFERENCES
Steven R. Finch, Mathematical Constants, Encyclopedia of Mathematics and its Applications, vol. 94, Cambridge University Press, 2003, Section 5.6, p. 297.
LINKS
Eric Weisstein's World of Mathematics, Weakly binary tree.
FORMULA
EXAMPLE
0.791603183577511807823628455723268224071742418090789...
MATHEMATICA
digits = 102; c[0] = 2; c[n_] := c[n] = c[n - 1]^2 + 2; eta[n_Integer] := eta[n] = 1/2 * Sqrt[c[n]^2^(-n)/Pi] * Sqrt[3 + Sum[1/Product[c[j], {j, 1, k}], {k, 1, n}]]; eta[5]; eta[n = 10]; While[RealDigits[eta[n], 10, digits] != RealDigits[eta[n - 5], 10, digits], n = n + 5]; RealDigits[eta[n], 10, digits] // First (* Jean-François Alcover, May 27 2014 *)
CROSSREFS
KEYWORD
AUTHOR
Eric W. Weisstein, Jul 15 2003
STATUS
approved