OFFSET
1,1
REFERENCES
Steven R. Finch, Mathematical Constants, Cambridge University Press, 2003, Section 6.8 Prouhet-Thue-Morse constant, p. 438.
LINKS
Philippe Flajolet and G. Nigel Martin, Probabilistic counting algorithms for data base applications, Journal of Computer and System Sciences. Vol. 31, No. 2, October 1985, p. 193.
EXAMPLE
2.302566137163630504293581251241815593640123596505911...
MATHEMATICA
digits = 80; t[n_] := Mod[DigitCount[n, 2, 1], 2]; p[k_] := p[k] = Product[(n/(n+1))^((-1)^t[n]), {n, 2^k, 2^(k+1)-1}] // N[#, digits + 20]&; pp = Table[Print["k = ", k]; p[k], {k, 0, 24}]; RealDigits[ Times @@ pp , 10, digits] // First
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Jean-François Alcover, Oct 08 2014
EXTENSIONS
A few more digits from Jon E. Schoenfield, Oct 13 2014
STATUS
approved