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.

A334136 a(n) = (n-1)*sigma(n) where sigma is the sum of divisors A000203.

Original entry on oeis.org

0, 3, 8, 21, 24, 60, 48, 105, 104, 162, 120, 308, 168, 312, 336, 465, 288, 663, 360, 798, 640, 756, 528, 1380, 744, 1050, 1040, 1512, 840, 2088, 960, 1953, 1536, 1782, 1632, 3185, 1368, 2220, 2128, 3510, 1680, 3936, 1848, 3612, 3432, 3240, 2208, 5828, 2736, 4557
Offset: 1

Views

Author

Michel Marcus, Apr 15 2020

Keywords

Crossrefs

Cf. A000203 (sigma), A064987 (n*sigma(n)).
Partial sums give A332264.

Programs

  • Mathematica
    a[n_] := (n - 1) * DivisorSigma[1, n]; Array[a, 50] (* Amiram Eldar, Apr 15 2020 *)
  • PARI
    a(n) = (n-1)*sigma(n);

Formula

G.f.: Sum_{k>=2} (k^2 - 1) * x^k / (1 - x^k)^2. - Ilya Gutkovskiy, Apr 15 2020
a(n) = A064987(n) - A000203(n). - Omar E. Pol, Apr 15 2020