OFFSET
0,1
REFERENCES
Steven R. Finch, Mathematical Constants, Encyclopedia of Mathematics and its Applications, vol. 94, Cambridge University Press, 2003, Section 2.4, p. 105.
LINKS
G. Niklasch, Some number theoretical constants: 1000-digit values. [Cached copy]
EXAMPLE
0.93126518416000433438923720555067698...
MATHEMATICA
digits = 99; $MaxExtraPrecision = 400; m0 = 1000; dm = 100; Clear[s]; LR = LinearRecurrence[{2, -1, 0, 0, 1, -1}, {0, 0, 0, 0, 5, 6}, 2 m0]; r[n_Integer] := LR[[n]]; s[m_] := s[m] = NSum[-r[n] PrimeZetaP[n]/n, {n, 5, m}, NSumTerms -> m0, WorkingPrecision -> 400] // Exp; s[m0]; s[m = m0 + dm]; While[RealDigits[s[m], 10, digits][[1]] != RealDigits[s[m-dm], 10, digits][[1]], Print[m]; m = m+dm]; RealDigits[s[m], 10, digits][[1]] (* Jean-François Alcover, Apr 15 2016 *)
PROG
(PARI) prodeulerrat(1-1/(p^5-p^4)) \\ Amiram Eldar, Mar 12 2021
CROSSREFS
KEYWORD
cons,nonn
AUTHOR
N. J. A. Sloane, Nov 15 2001
STATUS
approved