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.

A291507 a(n) = (n!)^9 * Sum_{i=1..n} 1/i^9.

Original entry on oeis.org

0, 1, 513, 10097891, 2647111616000, 5170142516807540224, 52103129720841632885243904, 2102549272223560776918400601161728, 282199388424234851655058321255905292713984, 109329825340451764123791003609208862665771818418176
Offset: 0

Views

Author

Seiichi Manyama, Aug 25 2017

Keywords

Crossrefs

Cf. A000254 (k=1), A001819 (k=2), A066989 (k=3), A099827 (k=5), A291456 (k=6), A291505 (k=7), A291506 (k=8), this sequence (k=9), A291508 (k=10).
Column k=9 of A291556.

Programs

  • Mathematica
    Table[(n!)^9 * Sum[1/i^9, {i, 1, n}], {n, 0, 12}] (* Vaclav Kotesovec, Aug 27 2017 *)
  • PARI
    a(n) = n!^9*sum(i=1, n, 1/i^9); \\ Michel Marcus, Aug 26 2017

Formula

a(0) = 0, a(1) = 1, a(n+1) = (n^9+(n+1)^9)*a(n) - n^18*a(n-1) for n > 0.
a(n) ~ zeta(9) * (2*Pi)^(9/2) * n^(9*n+9/2) / exp(9*n). - Vaclav Kotesovec, Aug 27 2017
Sum_{n>=0} a(n) * x^n / (n!)^9 = polylog(9,x) / (1 - x). - Ilya Gutkovskiy, Jul 15 2020