OFFSET
0,1
COMMENTS
Named after the American logician and mathematician John Barkley Rosser, Sr. (1907-1989). - Amiram Eldar, Jun 20 2021
REFERENCES
Steven R. Finch, Mathematical Constants, Cambridge University Press, 2003, Section 2.1 Hardy-Littlewood constants, p. 86.
LINKS
J. Barkley Rosser and Lowell Schoenfeld, Approximate formulas for some functions of prime numbers, Illinois J. Math., Vol. 6, No. 1 (1962), pp. 64-94, eq. (2.14).
Eric Weisstein's World of Mathematics, Twin Primes Constant.
FORMULA
4*C_2/exp(2*EulerGamma), where C_2 is the twin primes constant.
Equals lim_{x->inf} Product_{2 < p <= x} (1-2/p)*log(x)^2.
EXAMPLE
0.832429065661945278030805943531465575045445318077417053240893991296...
MATHEMATICA
digits = 98; s[n_] := (1/n)*N[Sum[MoebiusMu[d]*2^(n/d), {d, Divisors[n]}], digits + 60]; C2 = (175/256)*Product[(Zeta[n]*(1 - 2^(-n))*(1 - 3^(-n) )*(1 - 5^(-n))*(1 - 7^(-n)))^(-s[n]), {n, 2, digits + 60}];
RealDigits[4*C2/Exp[2*EulerGamma], 10, digits] // First
PROG
(PARI) 4 * exp(-2*Euler) * prodeulerrat(1-1/(p-1)^2, 1, 3) \\ Amiram Eldar, Mar 17 2021
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Jean-François Alcover, May 25 2016
STATUS
approved