OFFSET
1,2
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..1000
Steven R. Finch, Mathematical Constants II, Encyclopedia of Mathematics and Its Applications, Cambridge University Press, Cambridge, 2018. See p. 51.
V. Sita Ramaiah and D. Suryanarayana, Sums of reciprocals of some multiplicative functions - II, Indian J. Pure Appl. Math., Vol. 11 (1980), pp. 1334-1355.
László Tóth, Alternating Sums Concerning Multiplicative Arithmetic Functions, Journal of Integer Sequences, Vol. 20 (2017), Article 17.2.1. See section 4.9, pp. 28-29.
Rimer Zurita, Generalized Alternating Sums of Multiplicative Arithmetic Functions, Journal of Integer Sequences, Vol. 23 (2020), Article 20.10.4. See section 4.3, pp. 12-15.
FORMULA
a(n) = numerator(Sum_{k=1..n} 1/A034448(k)).
a(n)/A379514(n) = B * log(n) + D + O(log(n)^(5/3) * log(log(n))^(4/3) / n), where B = A308041, D = B * (gamma + A1 - A2), gamma = A001620, A1 = Sum_{p prime} ((p*C(p)*log(p)/(p-1)) * Sum_{k>=1} (k/(p^k*(p^(k+1)+1)))), A2 = Sum_{p prime} ((C(p)*log(p)/p^2) * Sum_{k>=0} (1/(p^k*(p^(k+1)+1)))), and C(p) = 1 - (p/(p-1)) * Sum_{k>=1} (1/(p^k*(p^(k+1)+1))) (Sita Ramaiah and Suryanarayana, 1980).
EXAMPLE
Fractions begin with 1, 4/3, 19/12, 107/60, 39/20, 61/30, 259/120, 817/360, 853/360, 97/40, 301/120, 307/120, ...
MATHEMATICA
usigma[n_] := Times @@ (1 + Power @@@ FactorInteger[n]); usigma[1] = 1; Numerator[Accumulate[Table[1/usigma[n], {n, 1, 50}]]]
PROG
(PARI) usigma(n) = {my(f = factor(n)); prod(i = 1, #f~, 1 + f[i, 1]^f[i, 2]); }
list(nmax) = {my(s = 0); for(k = 1, nmax, s += 1 / usigma(k); print1(numerator(s), ", "))};
CROSSREFS
KEYWORD
nonn,easy,frac,new
AUTHOR
Amiram Eldar, Dec 23 2024
STATUS
approved