OFFSET
0,1
COMMENTS
For comparison: Product_{n>=5} (1-(6n^2-4n+1)/(n-1)^4) = 3/32. - R. J. Mathar, Feb 25 2009
REFERENCES
Steven R. Finch, Mathematical Constants, Encyclopedia of Mathematics and its Applications, vol. 94, Cambridge University Press, 2003, Section 2.1, p. 86.
LINKS
R. J. Mathar, Hardy-Littlewood constants embedded into infinite products over all positive integers, arXiv:0903.2514 [math.NT], 2009-2011, constant C_1^(4).
G. Niklasch, Some number theoretical constants: 1000-digit values. [Cached copy]
EXAMPLE
0.30749487875832709312335448607107685302...
MATHEMATICA
$MaxExtraPrecision = 1000; digits = 99; terms = 1000; P[n_] := PrimeZetaP[ n] - 1/2^n - 1/3^n; LR = Join[{0, 0}, LinearRecurrence[{5, -4}, {-12, -60}, terms+10]]; r[n_Integer] := LR[[n]]; Exp[NSum[r[n]*P[n-1]/(n-1), {n, 3, terms}, NSumTerms -> terms, WorkingPrecision -> digits+10]] // RealDigits[#, 10, digits]& // First (* Jean-François Alcover, Apr 17 2016 *)
PROG
(PARI) prodeulerrat(1-(6*p^2-4*p+1)/(p-1)^4, 1, 5) \\ Amiram Eldar, Mar 10 2021
CROSSREFS
KEYWORD
cons,nonn
AUTHOR
N. J. A. Sloane, Nov 15 2001
EXTENSIONS
A sign in the definition corrected by R. J. Mathar, Feb 25 2009
STATUS
approved