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.

A343425 a(n) = Sum_{k=1..n} mu(k) * n^(n - k).

Original entry on oeis.org

1, 1, 5, 44, 474, 6259, 98398, 1801784, 37726398, 889909001, 23363492888, 675898131588, 21367308429609, 732952005073611, 27116443849927291, 1076343749563379984, 45629840631648951966, 2057705657634136459302, 98357762859847238180913
Offset: 1

Views

Author

Seiichi Manyama, May 19 2021

Keywords

Crossrefs

Programs

  • Mathematica
    a[n_] := Sum[MoebiusMu[k] * n^(n-k), {k,1,n}]; Array[a, 20] (* Amiram Eldar, May 19 2021 *)
  • PARI
    a(n) = sum(k=1, n, moebius(k)*n^(n-k));