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.

A375826 E.g.f. satisfies A(x) = 1/(1 - x*A(x))^(x^2).

Original entry on oeis.org

1, 0, 0, 6, 12, 40, 1260, 11088, 99120, 1926720, 32800320, 535328640, 11274642720, 259872088320, 6108539621184, 158608655251200, 4495317057504000, 134114095312404480, 4253953999500357120, 143971794376985272320, 5141239842495675340800
Offset: 0

Views

Author

Seiichi Manyama, Aug 30 2024

Keywords

Crossrefs

Programs

  • PARI
    a(n) = n!*sum(k=0, n\3, (n-2*k+1)^(k-1)*abs(stirling(n-2*k, k, 1))/(n-2*k)!);

Formula

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