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.

A377893 E.g.f. A(x) satisfies A(x) = (1 + x*A(x)^3) * exp(x * A(x)^3).

Original entry on oeis.org

1, 2, 27, 742, 31337, 1796376, 130408603, 11472417104, 1186462228785, 141083381264896, 18966727953873371, 2844742575536036352, 470958524169176911513, 85307709328403287961600, 16782586179544965856158363, 3563492814539574559964993536, 812273035493592514001487147233
Offset: 0

Views

Author

Seiichi Manyama, Nov 11 2024

Keywords

Crossrefs

Programs

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

Formula

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