A379514 Denominators of the partial sums of the reciprocals of the sum of unitary divisors function (A034448).
1, 3, 12, 60, 20, 30, 120, 360, 360, 40, 120, 120, 840, 70, 840, 14280, 42840, 42840, 42840, 42840, 171360, 57120, 57120, 171360, 2227680, 2227680, 2227680, 2227680, 2227680, 247520, 123760, 4084080, 340340, 9189180, 36756720, 183783600, 3491888400, 3491888400
Offset: 1
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.
Programs
-
Mathematica
usigma[n_] := Times @@ (1 + Power @@@ FactorInteger[n]); usigma[1] = 1; Denominator[Accumulate[Table[1/usigma[n], {n, 1, 50}]]]
-
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(denominator(s), ", "))};
Formula
a(n) = denominator(Sum_{k=1..n} 1/A034448(k)).