login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A175646 Decimal expansion of the Product_{primes p == 1 (mod 3)} 1/(1 - 1/p^2). 31

%I #45 Jan 17 2021 09:52:00

%S 1,0,3,4,0,1,4,8,7,5,4,1,4,3,4,1,8,8,0,5,3,9,0,3,0,6,4,4,4,1,3,0,4,7,

%T 6,2,8,5,7,8,9,6,5,4,2,8,4,8,9,0,9,9,8,8,6,4,1,6,8,2,5,0,3,8,4,2,1,2,

%U 2,2,2,4,5,8,7,1,0,9,6,3,5,8,0,4,9,6,2,1,7,0,7,9,8,2,6,2,0,5,9,6,2,8,9,9,7

%N Decimal expansion of the Product_{primes p == 1 (mod 3)} 1/(1 - 1/p^2).

%C The Euler product of the Riemann zeta function at 2 restricted to primes in A002476, which is the inverse of the infinite product (1-1/7^2)*(1-1/13^2)*(1-1/19^2)*...

%C There is a complementary Product_{primes p == 2 (mod 3)} 1/(1-1/p^2) = A333240 = 1.4140643908921476375655018190798... such that (this constant here)*1.4140643.../(1-1/3^2) = zeta(2) = A013661.

%C Because 1/(1-p^(-2)) = 1+1/(p^2-1), the complementary 1.414064... also equals Product_{primes p == 2 (mod 3)} (1+1/(p^2-1)), which appears in Eq. (1.8) of [Dence and Pomerance]. - _R. J. Mathar_, Jan 31 2013

%H Peter Luschny, <a href="/A175646/b175646.txt">Table of n, a(n) for n = 1..1000</a> (terms 1..105 from Vaclav Kotesovec).

%H Thomas Dence and Carl Pomerance, <a href="http://dx.doi.org/10.1023/A:1009753405498">Euler's Function in Residue Classes</a>, Raman. J., Vol. 2 (1998) pp. 7-20, <a href="https://math.dartmouth.edu/~carlp/PDF/paper116.pdf">alternative link</a>.

%H R. J. Mathar, <a href="http://arxiv.org/abs/1008.2547">Table of Dirichlet L-series and Prime Zeta Modulo Functions for Small Moduli</a>, arXiv:1008.2547 [math.NT], 2010-2015, p. 26.

%F Equals 2*Pi^2 / (3^(7/2) * A301429^2). - _Vaclav Kotesovec_, May 12 2020

%F Equals Sum_{k>=1} 1/A004611(k)^2. - _Amiram Eldar_, Sep 27 2020

%e 1.03401487541434188053903064441304762857896...

%p z := n -> Zeta(n)/Im(polylog(n, (-1)^(2/3))):

%p x := n -> (z(2^n)*(3^(2^n)-1)*sqrt(3)/2)^(1/2^n) / 3:

%p evalf(4*Pi^2 / (27*mul(x(n), n=1..8)), 106); # _Peter Luschny_, Jan 17 2021

%t digits = 105;

%t precision = digits + 5;

%t prodeuler[p_, a_, b_, expr_] := Product[If[a <= p <= b, expr, 1], {p, Prime[Range[PrimePi[a], PrimePi[b]]]}];

%t Lv3[s_] := prodeuler[p, 1, 2^(precision/s), 1/(1 - KroneckerSymbol[-3, p]*p^-s)] // N[#, precision]&;

%t Lv4[s_] := 2*Im[PolyLog[s, Exp[2*I*Pi/3]]]/Sqrt[3];

%t Lv[s_] := If[s >= 10000, Lv3[s], Lv4[s]];

%t gv[s_] := (1 - 3^(-s))*Zeta[s]/Lv[s];

%t pB = (3/4)*Product[gv[2^n*2]^(2^-(n+1)), {n, 0, 11}] // N[#, precision]&;

%t pA = Pi^2/9/pB ;

%t RealDigits[pA, 10, digits][[1]]

%t (* _Jean-François Alcover_, Jan 11 2021, after PARI code due to _Artur Jasinski_ *)

%t S[m_, n_, s_] := (t = 1; sums = 0; difs = 1; While[Abs[difs] > 10^(-digits - 5) || difs == 0, difs = (MoebiusMu[t]/t) * Log[If[s*t == 1, DirichletL[m, n, s*t], Sum[Zeta[s*t, j/m]*DirichletCharacter[m, n, j]^t, {j, 1, m}]/m^(s*t)]]; sums = sums + difs; t++]; sums);

%t P[m_, n_, s_] := 1/EulerPhi[m] * Sum[Conjugate[DirichletCharacter[m, r, n]] * S[m, r, s], {r, 1, EulerPhi[m]}] + Sum[If[GCD[p, m] > 1 && Mod[p, m] == n, 1/p^s, 0], {p, 1, m}];

%t Z[m_, n_, s_] := (w = 1; sumz = 0; difz = 1; While[Abs[difz] > 10^(-digits - 5), difz = P[m, n, s*w]/w; sumz = sumz + difz; w++]; Exp[sumz]);

%t $MaxExtraPrecision = 1000; digits = 121; RealDigits[Chop[N[Z[3,1,2], digits]], 10, digits-1][[1]] (* _Vaclav Kotesovec_, Jan 15 2021 *)

%t z[n_] := Zeta[n] / Im[PolyLog[n, (-1)^(2/3)]];

%t x[n_] := (z[2^n] (3^(2^n) - 1) Sqrt[3]/2)^(1/2^n) / 3;

%t N[4 Pi^2 / (27 Product[x[n], {n, 8}]), 106] (* _Peter Luschny_, Jan 17 2021 *)

%Y Cf. A002476, A004611, A007528, A175647, A301429, A333240, A334478, A334480.

%K cons,nonn

%O 1,3

%A _R. J. Mathar_, Aug 01 2010

%E More digits from _Vaclav Kotesovec_, May 12 2020 and Jun 27 2020

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 22:16 EDT 2024. Contains 371963 sequences. (Running on oeis4.)