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.

A354553 Expansion of e.g.f. exp( x * exp(x^3) ).

Original entry on oeis.org

1, 1, 1, 1, 25, 121, 361, 3361, 42001, 275185, 1819441, 30777121, 371238121, 3057311401, 44263763545, 801096528961, 9710981323681, 125367419194081, 2643123767954401, 45840730383002305, 646414025466298681, 13258301279836276441
Offset: 0

Views

Author

Seiichi Manyama, Aug 18 2022

Keywords

Crossrefs

Programs

  • PARI
    my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(x*(exp(x^3)))))
    
  • PARI
    a(n) = n!*sum(k=0, n\3, (n-3*k)^k/(k!*(n-3*k)!));

Formula

a(n) = n! * Sum_{k=0..floor(n/3)} (n - 3*k)^k/(k! * (n - 3*k)!).