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.

Showing 1-1 of 1 results.

A375632 Expansion of e.g.f. exp(2*x) / (1 - x^3/6 * exp(x)).

Original entry on oeis.org

1, 2, 4, 9, 28, 122, 624, 3523, 22824, 170948, 1422664, 12856373, 126598036, 1358773886, 15721899652, 194356158823, 2560950546576, 35899907132872, 533099244285136, 8351271711094697, 137675784924101596, 2383758487476054242, 43244905386257120044
Offset: 0

Views

Author

Seiichi Manyama, Aug 22 2024

Keywords

Crossrefs

Programs

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

Formula

a(n) = n! * Sum_{k=0..floor(n/3)} (k+2)^(n-3*k)/(6^k*(n-3*k)!).
Showing 1-1 of 1 results.