A109695 Decimal expansion of Sum_{n>=1} 1/phi(n)^2.
3, 3, 9, 0, 6, 4, 2, 0, 0, 5, 5, 7, 2, 5, 0, 3, 9, 1, 6, 1, 4, 2, 5, 9, 5, 6, 6, 3, 0, 0, 2, 6, 3, 0, 7, 9, 3, 7, 4, 0, 5, 3, 7, 3, 8, 1, 2, 1, 4, 4, 7, 1, 6, 9, 1, 1, 8, 0, 7, 3, 9, 8, 1, 5, 6, 8, 5, 7, 3, 8, 1, 3, 1, 1, 1, 7, 7, 6, 3, 3, 2, 1, 3, 6, 5, 0, 4, 1, 0, 2, 4, 4, 4, 9, 5, 2, 3, 7, 4, 2, 9, 8, 2, 5, 7
Offset: 1
Examples
3.39064200557250391614259566300263079374053738121447169118...
References
- Jean-Marie Monier, Analyse, Exercices corrigés, 2ème année MP, Dunod, 1997, Exercice 3.2.21, pp. 281 and 294.
Programs
-
Mathematica
$MaxExtraPrecision = 1000; f[p_] := (1 + p^2/((p - 1)^2*(p^2 - 1))); Do[cc = Rest[CoefficientList[Series[Log[f[1/x]], {x, 0, m}], x]]; Print[f[2] * Exp[N[Sum[Indexed[cc, n]*(PrimeZetaP[n] - 1/2^n), {n, 2, m}], 120]]], {m, 100, 1000, 100}] (* Vaclav Kotesovec, Jun 25 2020 *)
-
PARI
my(N=1000000000); prodeuler(p=2,N,1.+p^2/((p-1)^2*(p^2-1)))*(1+1/(N*log(N)))
-
PARI
prodeulerrat(1 + p^2/((p-1)^2*(p^2-1))) \\ Amiram Eldar, Mar 15 2021
Formula
Equals Product_p Sum_{k>=0} 1/phi(p^k)^2 = Product_p (1 + p^2/((p-1)^2*(p^2-1))).
Equals Sum{n>=1} 1/A127473(n). - Amiram Eldar, Mar 15 2021
Extensions
Four more digits from R. J. Mathar, Feb 03 2009, 25 more Dec 18 2010
More digits from Vaclav Kotesovec, Jun 25 2020
Comments