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.

Showing 1-2 of 2 results.

A377673 a(n) is the sum of the divisors of n^n + n.

Original entry on oeis.org

3, 12, 72, 588, 5652, 117504, 1895712, 46503600, 839411118, 25440307200, 474527311344, 22404560101168, 489294047662728, 30902868417576960, 1096805935992340800, 38000593697802058224, 1318965178069293272496, 90596485743469636057920, 3578317312662511683264000
Offset: 1

Views

Author

Sean A. Irvine, Nov 03 2024

Keywords

Crossrefs

Programs

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

Formula

a(n) = A000203(A066068(n)).

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

Original entry on oeis.org

4, 42, 432, 6048, 67584, 1704240, 38054016, 967814400, 16203253248, 513593801496, 15743437516800, 720045832568832, 19146847615988736, 835966563470742528, 31421980989189888768, 1602925310146310674200, 52064744760120508416000, 4286575920597346109768658
Offset: 2

Views

Author

Sean A. Irvine, Oct 24 2023

Keywords

Crossrefs

Programs

  • Mathematica
    Array[DivisorSigma[1, #^# - 1] &, 18, 2] (* Michael De Vlieger, Oct 24 2023 *)
  • PARI
    a(n) = sigma(n^n-1);

Formula

a(n) = A000203(A048861(n)).
Showing 1-2 of 2 results.