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.

A381210 Expansion of e.g.f. 1/(1 - sinh(x))^3.

Original entry on oeis.org

1, 3, 12, 63, 408, 3123, 27552, 275103, 3065088, 37682883, 506606592, 7392091743, 116329479168, 1963781841843, 35395627487232, 678401549017983, 13776623985819648, 295481239628640003, 6674320861079273472, 158364407589097613823, 3937958237874411798528
Offset: 0

Views

Author

Seiichi Manyama, Feb 17 2025

Keywords

Crossrefs

Programs

  • PARI
    a136630(n, k) = 1/(2^k*k!)*sum(j=0, k, (-1)^(k-j)*(2*j-k)^n*binomial(k, j));
    a(n) = sum(k=0, n, (k+2)!*a136630(n, k))/2;

Formula

a(n) = 1/2 * Sum_{k=0..n} (k+2)! * A136630(n,k).