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.

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

Original entry on oeis.org

1, 5, 46661, 1333735776850284124449081472890437
Offset: 1

Views

Author

Keywords

Comments

The next term has 250 digits. - Harvey P. Dale, Dec 19 2014

Crossrefs

Cf. A165710.

Programs

  • Mathematica
    s=0;lst={};Do[AppendTo[lst,s+=n!^n! ],{n,1,6,1}];lst
    Accumulate[Table[(k!)^k!,{k,5}]] (* Harvey P. Dale, Dec 19 2014 *)
  • PARI
    a(n)=sum(k=1,n,k!^k!) \\ Charles R Greathouse IV, Oct 12 2009