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

A352645
Expansion of e.g.f. exp(3 * x * cosh(x)).
1
1, 3, 9, 36, 189, 1068, 6669, 47568, 363897, 2976048, 26422929, 248498880, 2464625205, 25922981568, 285884886933, 3296418423552, 39795656126193, 499998631895808, 6526830528863001, 88493793850020864, 1241919513823360941, 18020032474632956928
OFFSET
0,2
FORMULA
E.g.f.: exp(3 * x * cosh(x)).
a(0) = 1; a(n) = 3 * Sum_{k=0..floor((n-1)/2)} (2*k+1) * binomial(n-1,2*k) * a(n-2*k-1).
MATHEMATICA
With[{m = 21}, Range[0, m]! * CoefficientList[Series[Exp[3*x*Cosh[x]], {x, 0, m}], x]] (* Amiram Eldar, Mar 26 2022 *)
PROG
(PARI) my(N=40, x='x+O('x^N)); Vec(serlaplace(exp(3*x*cosh(x))))
(PARI) a(n) = if(n==0, 1, 3*sum(k=0, (n-1)\2, (2*k+1)*binomial(n-1, 2*k)*a(n-2*k-1)));
CROSSREFS
Sequence in context: A030936 A030870 A030965 * A245154 A038079 A163144
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 25 2022
STATUS
approved