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-3 of 3 results.

A377675 Number of prime factors of n^n-n (counted with multiplicity).

Original entry on oeis.org

1, 4, 5, 7, 5, 9, 7, 12, 8, 9, 7, 13, 6, 11, 17, 16, 6, 17, 7, 15, 10, 10, 10, 19, 11, 18, 15, 14, 7, 22, 13, 21, 11, 14, 22, 24, 7, 15, 15, 26, 9, 20, 7, 17, 17, 12, 11, 30, 9, 24, 15, 20, 10, 29, 16, 27, 12, 13, 9, 29, 8, 18, 29, 27, 15, 24, 8, 23, 13, 25
Offset: 2

Views

Author

Sean A. Irvine, Nov 03 2024

Keywords

Crossrefs

Programs

  • Mathematica
    a[n_] := PrimeOmega[n^n - n]; Array[a, 45, 2] (* Amiram Eldar, Nov 04 2024 *)
  • PARI
    a(n) = bigomega(n^n-n);

Formula

a(n) = A001222(A061190(n)).

A377676 a(n) is the number of divisors of n^n - n.

Original entry on oeis.org

2, 8, 18, 40, 24, 120, 48, 336, 80, 192, 72, 1920, 48, 288, 23040, 1728, 36, 10240, 72, 7680, 432, 240, 384, 32256, 640, 49152, 2016, 3840, 96, 193536, 1152, 22528, 1152, 4608, 1327104, 1638400, 96, 7680, 9216, 4128768, 384, 294912, 72, 23040, 30720, 576
Offset: 2

Views

Author

Sean A. Irvine, Nov 03 2024

Keywords

Crossrefs

Programs

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

Formula

a(n) = A000005(A061190(n)).

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)).
Showing 1-3 of 3 results.