cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A379514 Denominators of the partial sums of the reciprocals of the sum of unitary divisors function (A034448).

Original entry on oeis.org

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

Views

Author

Amiram Eldar, Dec 23 2024

Keywords

Crossrefs

Cf. A034448, A064609, A370898, A379513 (numerators), A379516.

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)).