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!)
A352253 Expansion of e.g.f. 1 / (1 - x * sinh(x) / 2) (even powers only). 2
1, 1, 8, 153, 5492, 316625, 26774622, 3121729709, 479962730648, 94087054172673, 22904161764512570, 6778870099212235805, 2397161662661680925364, 998186321121004312238513, 483430830256916593106991782, 269435322393253822641626419725, 171224984800186115316322226731952 (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,2*k) * k * a(n-k).
MATHEMATICA
nmax = 32; Take[CoefficientList[Series[1/(1 - 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, 2 k] k a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 16}]
PROG
(PARI) my(x='x+O('x^40), v=Vec(serlaplace(1 /(1-x*sinh(x)/2)))); vector(#v\2, k, v[2*k-1]) \\ Michel Marcus, Mar 10 2022
CROSSREFS
Sequence in context: A360575 A304400 A174845 * A302259 A113268 A356900
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 September 4 05:14 EDT 2024. Contains 375679 sequences. (Running on oeis4.)