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.

A354550 Expansion of e.g.f. exp( x * exp(x^2/2) ).

Original entry on oeis.org

1, 1, 1, 4, 13, 46, 241, 1156, 6889, 44668, 300241, 2328976, 18390901, 159273544, 1461200833, 13995753136, 144068872081, 1531949061136, 17259159775969, 202543867724608, 2474236899786781, 31633380519660256, 417760492214548561, 5751414293905728064
Offset: 0

Views

Author

Seiichi Manyama, Aug 18 2022

Keywords

Crossrefs

Programs

  • Mathematica
    With[{nn=30},CoefficientList[Series[Exp[x Exp[x^2/2]],{x,0,nn}],x] Range[0,nn]!] (* Harvey P. Dale, Mar 03 2024 *)
  • PARI
    my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(x*(exp(x^2/2)))))
    
  • PARI
    a(n) = n!*sum(k=0, n\2, (n-2*k)^k/(2^k*k!*(n-2*k)!));

Formula

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