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.

A357664 Expansion of e.g.f. sinh( (exp(2*x) - 1)/sqrt(2) )/sqrt(2).

Original entry on oeis.org

0, 1, 2, 6, 32, 220, 1592, 11944, 96000, 847120, 8209952, 86020704, 958326272, 11243157952, 138464594816, 1789358629504, 24250275913728, 344002396594432, 5092763802452480, 78443316497892864, 1253887341918199808, 20761127890765634560
Offset: 0

Views

Author

Seiichi Manyama, Oct 07 2022

Keywords

Crossrefs

Programs

  • PARI
    my(N=30, x='x+O('x^N)); concat(0, apply(round, Vec(serlaplace(sinh((exp(2*x)-1)/sqrt(2))/sqrt(2)))))
    
  • PARI
    a(n) = sum(k=0, (n-1)\2, 2^(n-1-k)*stirling(n, 2*k+1, 2));

Formula

a(n) = Sum_{k=0..floor((n-1)/2)} 2^(n-1-k) * Stirling2(n,2*k+1).