OFFSET
0,1
COMMENTS
The constant B that appears in the asymptotic formula for the sum of the bi-unitary divisor function (A306069).
EXAMPLE
0.405237031444223925085965099112185234104414172404198492623463629775379...
MATHEMATICA
cc = CoefficientList[Series[(p^2 - p - 1)/(p^4 + 2*p^3 + 1) /. p -> 1/x, {x, 0, 30}], x]; f = FindSequenceFunction[cc]; digits = 20; B = 2 NSum[f[n + 1 // Round]*(-PrimeZetaP'[n]), {n, 2, Infinity}, Method -> "AlternatingSigns", NSumTerms -> 10 digits, WorkingPrecision -> 5 digits]; RealDigits[B, 10, digits][[1]] (* Jean-François Alcover, Jun 19 2018 *)
ratfun = 2*(p^2 - p - 1)/(p^4 + 2*p^3 + 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, 20}]; Do[Print[N[Sum[Log[p]*ratfun /. p -> Prime[k], {k, 1, m}] + zetas, 100]], {m, 2000, 20000, 2000}] (* Vaclav Kotesovec, Jun 17 2020 *)
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Amiram Eldar, Jun 19 2018
EXTENSIONS
a(1)-a(20) from Jean-François Alcover, Jun 19 2018
More digits from Vaclav Kotesovec, Jun 17 2020
STATUS
approved