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.

A384855 E.g.f. A(x) satisfies A(x) = exp( x/A(-x*A(x))^3 ).

Original entry on oeis.org

1, 1, 7, 10, -503, -8564, -103751, 3479554, 327940225, 8613464536, -36391967279, -24834942253274, -2356662167845487, -88482481533921500, 1825569695231959993, 704791058412273699106, 88829364712362626504449, 5460031123686211024338736, 23871425875449192877470625
Offset: 0

Views

Author

Seiichi Manyama, Jun 10 2025

Keywords

Crossrefs

Programs

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

Formula

See A384859.