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.

A380752 E.g.f. A(x) satisfies A(x) = exp(x * A(x)) / (1 - x * A(x)^2)^2.

Original entry on oeis.org

1, 3, 41, 1114, 46217, 2595186, 184264033, 15839938318, 1599772132337, 185698542344050, 24362771800087241, 3565209717372983142, 575786158331135496313, 101729690893078619387914, 19518889966696995273600209, 4041785999884112498658681406, 898403694387449768732923267937
Offset: 0

Views

Author

Seiichi Manyama, Feb 01 2025

Keywords

Crossrefs

Programs

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

Formula

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