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”).

A349105
Expansion of e.g.f. 1/(1 - (sinh(x) + x*cosh(x))/2 ).
3
1, 1, 2, 8, 40, 243, 1796, 15502, 152608, 1690613, 20814208, 281859540, 4163795648, 66636761575, 1148477490304, 21207704998010, 417728195909632, 8742243282090153, 193720478508563456, 4531158728871170080, 111562803180301643776, 2884156736234559267611
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=0..floor((n-1)/2)} (k+1) * binomial(n,2*k+1) * a(n-2*k-1).
MATHEMATICA
With[{m = 21}, Range[0, m]! * CoefficientList[Series[1/(1 - (Sinh[x] + x*Cosh[x])/2), {x, 0, m}], x]] (* Amiram Eldar, Mar 26 2022 *)
PROG
(PARI) my(N=40, x='x+O('x^N)); Vec(serlaplace(1/(1-(sinh(x)+x*cosh(x))/2)))
(PARI) a(n) = if(n==0, 1, sum(k=0, (n-1)\2, (k+1)*binomial(n, 2*k+1)*a(n-2*k-1)));
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 26 2022
STATUS
approved