OFFSET
1,2
LINKS
Steven R. Finch, Mathematical Constants II, Encyclopedia of Mathematics and Its Applications, Cambridge University Press, Cambridge, 2018, p. 100, p. 169.
V. Sita Ramaiah and D. Suryanarayana, Sums of reciprocals of some multiplicative functions, Mathematical Journal of Okayama University, Vol. 21, No. 2 (1979), pp. 155-164.
László Tóth, Alternating Sums Concerning Multiplicative Arithmetic Functions, Journal of Integer Sequences, Vol. 20 (2017), Article 17.2.1.
FORMULA
EXAMPLE
Fractions begin with 1, 4/3, 19/12, 7/4, 23/12, 2, 17/8, 53/24, 55/24, 169/72, 175/72, 89/36, ...
MATHEMATICA
psi[n_] := n * Times @@ (1 + 1/Transpose[FactorInteger[n]][[1]]); psi[1] = 1; Numerator[Accumulate[1/Array[psi[#] &, 50]]]
PROG
(PARI) f(n) = n * sumdivmult(n, d, issquarefree(d)/d); \\ A001615
a(n) = numerator(sum(k=1, n, 1/f(k))); \\ Michel Marcus, Oct 15 2022
CROSSREFS
KEYWORD
nonn,frac
AUTHOR
Amiram Eldar, Oct 14 2022
STATUS
approved