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.

A381206 Expansion of e.g.f. 1/(1 - x*cosh(x))^2.

Original entry on oeis.org

1, 2, 6, 30, 192, 1450, 12960, 133574, 1550976, 20055186, 285903360, 4452231982, 75186726912, 1368588922298, 26709799753728, 556339845854550, 12318065768693760, 288894650033594914, 7154212267816648704, 186545064693433665854, 5108590743587243950080
Offset: 0

Views

Author

Seiichi Manyama, Feb 17 2025

Keywords

Comments

As stated in the comment of A185951, A185951(n,0) = 0^n.

Crossrefs

Programs

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

Formula

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