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.

A351733 Expansion of e.g.f. exp( 2 * x * (exp(x) - 1) ).

Original entry on oeis.org

1, 0, 4, 6, 56, 250, 1812, 12614, 101040, 864882, 7988780, 78726142, 823897032, 9111774698, 106068603396, 1295153135670, 16538681229152, 220281968528098, 3053087839536732, 43941561067048430, 655501502129291640, 10118103843683127642
Offset: 0

Views

Author

Seiichi Manyama, May 20 2022

Keywords

Crossrefs

Programs

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

Formula

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