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.

A354552 Expansion of e.g.f. exp( x * exp(x^4/24) ).

Original entry on oeis.org

1, 1, 1, 1, 1, 6, 31, 106, 281, 946, 7561, 54286, 281161, 1207636, 7997991, 81996916, 701522641, 4580581916, 29742355441, 306369616636, 3632198902321, 34710574441096, 276645112305871, 2652825718776696, 35647605796451881, 458142859493786776
Offset: 0

Views

Author

Seiichi Manyama, Aug 18 2022

Keywords

Comments

This sequence is different from A143568.

Crossrefs

Programs

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

Formula

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