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.

A377677 a(n) is the sum of the divisors of n^n - n.

Original entry on oeis.org

3, 60, 728, 10416, 116064, 2837120, 36990720, 1452853584, 27615698352, 965243666880, 23861701899840, 1355882884941312, 20758574413420992, 1604569397488307712, 93340493714183159808, 3135286584767445151680, 90560273718863022770592, 8284620870197084160000000
Offset: 2

Views

Author

Sean A. Irvine, Nov 03 2024

Keywords

Crossrefs

Programs

  • Mathematica
    a[n_] := DivisorSigma[1, n^n - n]; Array[a, 20, 2] (* Amiram Eldar, Nov 04 2024 *)
  • PARI
    a(n) = sigma(n^n-n);

Formula

a(n) = A000203(A061190(n)).