A330021 Expansion of e.g.f. exp(sinh(exp(x) - 1)).
1, 1, 2, 6, 25, 128, 754, 5001, 37048, 303930, 2732395, 26657106, 280039786, 3149224991, 37729906686, 479570263690, 6442902231289, 91186621152460, 1355582225366134, 21112253012491481, 343672026658191836, 5834977672879651390, 103130592695715620419
Offset: 0
Keywords
Links
- Alois P. Heinz, Table of n, a(n) for n = 0..485
Programs
-
Maple
g:= proc(n) option remember; `if`(n=0, 1, add( binomial(n-1, j-1)*irem(j, 2)*g(n-j), j=1..n)) end: b:= proc(n, m) option remember; `if`(n=0, g(m), m*b(n-1, m)+b(n-1, m+1)) end: a:= n-> b(n, 0): seq(a(n), n=0..22); # Alois P. Heinz, Jun 23 2023
-
Mathematica
nmax = 22; CoefficientList[Series[Exp[Sinh[Exp[x] - 1]], {x, 0, nmax}], x] Range[0, nmax]!
Comments