login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A351937
Expansion of e.g.f. exp( (sinh(x) + x*cosh(x)) / 2 ).
4
1, 1, 1, 3, 9, 24, 99, 418, 1769, 9320, 49541, 278912, 1764825, 11319784, 77850287, 570610472, 4290387409, 34316005632, 285335249065, 2455224885440, 22165590003849, 206191758121856, 1989511661589435, 19903718061574144, 204795484665487865, 2179948112062667392
OFFSET
0,4
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=0..floor((n-1)/2)} binomial(n-1,2*k) * (k+1) * a(n-2*k-1).
MATHEMATICA
nmax = 25; CoefficientList[Series[Exp[(Sinh[x] + x Cosh[x])/2], {x, 0, nmax}], x] Range[0, nmax]!
a[0] = 1; a[n_] := a[n] = Sum[Binomial[n - 1, 2 k] (k + 1) a[n - 2 k - 1], {k, 0, Floor[(n - 1)/2]}]; Table[a[n], {n, 0, 25}]
PROG
(PARI) my(x='x+O('x^30)); Vec(serlaplace(exp((sinh(x) + x*cosh(x))/2))) \\ Michel Marcus, Feb 26 2022
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Feb 26 2022
STATUS
approved