login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A345144
Product_{p primes, k>=1} ((p^(k+1) - 1)/(p^(k+1) - p))^(1/p^k).
3
1, 5, 6, 1, 5, 9, 6, 8, 4, 6, 9, 3, 1, 0, 2, 4, 1, 6, 4, 3, 2, 6, 9, 6, 7, 8, 8, 9, 1, 4, 4, 5, 5, 5, 6, 4, 4, 3, 6, 4, 7, 3, 7, 6, 4, 6, 8, 2, 2, 2, 3, 2, 1, 6, 9, 9, 4, 5, 8, 6, 6, 4, 5, 7, 0, 9, 6, 8, 3, 5, 7, 8, 4, 9, 4, 9, 0, 9, 5, 3, 9, 8, 8, 9, 4, 2, 4, 4, 3, 0, 1, 0, 8, 6, 8, 0, 9, 1, 0, 3, 2, 1, 4, 3, 7
OFFSET
1,2
LINKS
Ramanujan's Papers, Some formulas in the analytic theory of numbers, Messenger of Mathematics, XLV, 1916, 81-84, Formula (20), constant c.
FORMULA
Equals exp(1) * lim_{n->infinity} (A066780(n)^(1/n)) / n.
EXAMPLE
1.561596846931024164326967889144555644364737646822232169945866457...
MATHEMATICA
$MaxExtraPrecision = 1000; m = 500; prod = 1; Do[Clear[f]; f[p_] := ((p^(k + 1) - 1)/(p^(k + 1) - p))^(1/p^k); cc = Rest[CoefficientList[Series[Log[f[1/x]], {x, 0, m}], x, m + 1]]; prod *= f[2]*Exp[N[Sum[Indexed[cc, n]*(PrimeZetaP[n] - 1/2^n), {n, 2, m}], 100]]; Print[prod], {k, 1, 200}]
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Vaclav Kotesovec, Jun 09 2021
STATUS
approved