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!)
A352254 Expansion of e.g.f. exp( x * sinh(x) / 2 ) (even powers only). 2
1, 1, 5, 48, 753, 16880, 507579, 19509042, 927229553, 53126200872, 3597373129635, 283321938437318, 25614466939850169, 2629191169850594388, 303549146372282854883, 39103024746814973908890, 5581172267077778765676129, 877211696663645448333041072, 151002471269513108372760683523 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} binomial(2*n-1,2*k-1) * k * a(n-k).
MATHEMATICA
nmax = 36; Take[CoefficientList[Series[Exp[x Sinh[x]/2], {x, 0, nmax}], x] Range[0, nmax]!, {1, -1, 2}]
a[0] = 1; a[n_] := a[n] = Sum[Binomial[2 n - 1, 2 k - 1] k a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 18}]
PROG
(PARI) my(x='x+O('x^40), v=Vec(serlaplace(exp(x*sinh(x)/2)))); vector(#v\2, k, v[2*k-1]) \\ Michel Marcus, Mar 10 2022
CROSSREFS
Sequence in context: A108207 A127091 A370758 * A346183 A224510 A333982
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Mar 09 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:02 EDT 2024. Contains 371969 sequences. (Running on oeis4.)