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!)
A352251 Expansion of e.g.f. 1 / (1 - x * sinh(x)) (even powers only). 3
1, 2, 28, 966, 62280, 6452650, 980531916, 205438870014, 56760128400016, 19994672935658322, 8746764024725937300, 4651991306703670964518, 2956156902003429777549144, 2212026607642404922284728826, 1925137044528752884360406444380, 1928103808741894922401976601295950 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(0) = 1; a(n) = 2 * Sum_{k=1..n} binomial(2*n,2*k) * k * a(n-k).
MATHEMATICA
nmax = 30; Take[CoefficientList[Series[1/(1 - x Sinh[x]), {x, 0, nmax}], x] Range[0, nmax]!, {1, -1, 2}]
a[0] = 1; a[n_] := a[n] = 2 Sum[Binomial[2 n, 2 k] k a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 15}]
PROG
(PARI) my(x='x+O('x^40), v=Vec(serlaplace(1 /(1-x*sinh(x))))); vector(#v\2, k, v[2*k-1]) \\ Michel Marcus, Mar 10 2022
CROSSREFS
Sequence in context: A009256 A012725 A264637 * A012756 A362587 A009403
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 24 08:48 EDT 2024. Contains 371930 sequences. (Running on oeis4.)