login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 13:12 EDT 2024. Contains 371969 sequences. (Running on oeis4.)