OFFSET
0,1
REFERENCES
D. Suryanarayana and V. Siva Rama Prasad, The number of k-ary, k+1-free divisors of an integer, J. Reine Angew. Math. 276 (1975) 15-35.
LINKS
Steven R. Finch, Unitarism and Infinitarism, February 25, 2004. [Cached copy, with permission of the author]
Steven R. Finch, Mathematical Constants II, Encyclopedia of Mathematics and Its Applications, Cambridge University Press, Cambridge, 2018, p. 50.
FORMULA
Equals sum_{primes p} (2p+1)*log(p)/((p+1)(p^2+p-1)) = sum_p log(p)*[2/(p^2-1)-3/p^3-1)+4/(p^4-1)-10/(p^5-1)....] where the terms accumulate; this is essentially the logarithmic derivative of the Riemann zeta function at s=2, 3, 4,...
EXAMPLE
0.748372333429674...
MATHEMATICA
ratfun = (2*p + 1)/((p + 1)*(p^2 + p - 1)); zetas = 0; ratab = Table[konfun = Simplify[ratfun + c/(p^power - 1)] // Together; coefs = CoefficientList[Numerator[konfun], p]; sol = Solve[Last[coefs] == 0, c][[1]]; zetas = zetas + c*Zeta'[power]/Zeta[power] /. sol; ratfun = konfun /. sol, {power, 2, 25}]; Do[Print[N[Sum[Log[p]*ratfun /. p -> Prime[k], {k, 1, m}] + zetas, 120]], {m, 2000, 20000, 2000}] (* Vaclav Kotesovec, Jun 24 2020 *)
CROSSREFS
KEYWORD
cons,nonn
AUTHOR
R. J. Mathar, Jun 04 2009
EXTENSIONS
More digits from Vaclav Kotesovec, Jun 24 2020
STATUS
approved