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.

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

Original entry on oeis.org

1, 0, 1, 3, 3, 30, 105, 315, 2625, 11340, 57645, 467775, 2505195, 17027010, 142026885, 922296375, 7493911425, 65886420600, 503693415225, 4625660914875, 43369908657075, 379618464975750, 3824934458169825, 38406952928819475, 376103907454500225
Offset: 0

Views

Author

Seiichi Manyama, Jun 16 2024

Keywords

Crossrefs

Programs

  • PARI
    a(n) = n!*sum(k=0, n\2, binomial(k, n-2*k)/(2^k*k!));

Formula

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