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.

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

Original entry on oeis.org

1, 65, 46721, 191149697, 2986175149697, 139317055679149697, 16390300280131775149697, 4296598745804900241599149697, 2283384320190476620685217983149697, 2283382306976051006261597069217983149697
Offset: 1

Views

Author

Eric W. Weisstein, Jul 16 2017

Keywords

Crossrefs

Cf. A007489 (k!), A104344 (k!^2), A289945 (k!^4).
Cf. A289947 (indices giving primes).

Programs

  • Mathematica
    Table[Sum[k!^6, {k, n}], {n, 10}]
    Accumulate[(Range[10]!)^6] (* Harvey P. Dale, May 14 2023 *)
  • PARI
    a(n) = sum(k=1, n, k!^6); \\ Michel Marcus, Jul 16 2017