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.

A371018 Expansion of e.g.f. (1/x) * Series_Reversion( x/(1 + x^2*exp(x)) ).

Original entry on oeis.org

1, 0, 2, 6, 60, 620, 7950, 129402, 2365496, 50512968, 1208642490, 32223422990, 947694971652, 30435132773916, 1061061668979494, 39889366397571810, 1608910488000292080, 69305890226183224592, 3175519952912430375666, 154216789672147809137046
Offset: 0

Views

Author

Seiichi Manyama, Mar 08 2024

Keywords

Crossrefs

Programs

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

Formula

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