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

A339311 a(n) = Sum_{k=1..n} (k!)^n.

Original entry on oeis.org

1, 5, 225, 333089, 24891170433, 139317055679149697, 82606511560391889386751489, 6984964663477899063759529684476994049, 109110688697205077023425816926479750793809817618433, 395940866162019279867473563258123776010342586429441374123441432577
Offset: 1

Views

Author

Seiichi Manyama, Nov 29 2020

Keywords

Crossrefs

Sum_{k=1..n} (k!)^m: A007489 (m=1), A104344 (m=2), A138564 (m=3), A289945 (m=4), A316777 (m=5), A289946 (m=6).

Programs

  • Mathematica
    a[n_] := Sum[(k!)^n, {k, 1, n}]; Array[a, 10] (* Amiram Eldar, Apr 28 2021 *)
  • PARI
    {a(n) = sum(k=1, n, k!^n)}
Showing 1-1 of 1 results.