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.

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

Original entry on oeis.org

1, 1, 8, 129, 3196, 107465, 4575966, 236120059, 14322901832, 998966928897, 78770826493210, 6929685905371691, 672900446143476156, 71491442785783506577, 8249400210035835040022, 1027394346436911560475915, 137360293432089585554830096
Offset: 0

Views

Author

Seiichi Manyama, Aug 15 2023

Keywords

Crossrefs

Programs

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

Formula

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