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!)
A352644 Expansion of e.g.f. exp(2 * x * cosh(x)). 1
1, 2, 4, 14, 64, 282, 1504, 9382, 59392, 417842, 3234304, 25854270, 222423040, 2039652682, 19398688768, 195195414998, 2058666508288, 22509119309922, 257507944431616, 3058883865391726, 37588692110934016, 479523015556635002, 6316374397705781248 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(0) = 1; a(n) = 2 * Sum_{k=0..floor((n-1)/2)} (2*k+1) * binomial(n-1,2*k) * a(n-2*k-1).
MATHEMATICA
With[{m = 22}, Range[0, m]! * CoefficientList[Series[Exp[2*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(2*x*cosh(x))))
(PARI) a(n) = if(n==0, 1, 2*sum(k=0, (n-1)\2, (2*k+1)*binomial(n-1, 2*k)*a(n-2*k-1)));
CROSSREFS
Sequence in context: A046911 A089127 A132852 * A132079 A055790 A322623
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 August 12 16:47 EDT 2024. Contains 375113 sequences. (Running on oeis4.)