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.

A363357 E.g.f. satisfies A(x) = exp(x * A(x)^2 * (1 + x * A(x))).

Original entry on oeis.org

1, 1, 7, 85, 1581, 39501, 1244953, 47426373, 2120506489, 108894505753, 6317267871501, 408637512353049, 29164082035045477, 2276557391070945477, 192956160476285907457, 17647873882378895267821, 1732445579330211460781937, 181694902682241512454842673
Offset: 0

Views

Author

Seiichi Manyama, Aug 17 2023

Keywords

Crossrefs

Programs

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

Formula

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