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.

A368852 a(n) = (n!)^3 * Sum_{k=0..n} (-1)^k/(k!)^3.

Original entry on oeis.org

1, 0, 1, 26, 1665, 208124, 44954785, 15419491254, 7894779522049, 5755294271573720, 5755294271573720001, 7660296675464621321330, 13236992655202865643258241, 29081672863480695818238355476, 79800110337391029325246047426145
Offset: 0

Views

Author

Seiichi Manyama, Jan 07 2024

Keywords

Crossrefs

Programs

  • PARI
    a(n) = n!^3*sum(k=0, n, (-1)^k/k!^3);

Formula

a(n) = n^3 * a(n-1) + (-1)^n.