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!)
A332258 E.g.f.: 1 / (1 + x - sinh(x)). 3
1, 0, 0, 1, 0, 1, 20, 1, 112, 1681, 492, 27721, 371624, 319177, 13461604, 171387217, 319071456, 11466038689, 143550642140, 484491620089, 15758152572952, 199089883272217, 1077471975974484, 32827750137627457, 427744154995090256, 3385134777669637681 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,7
COMMENTS
Number of labeled ordered partitions of an n-set into odd parts > 1.
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=2..ceiling(n/2)} binomial(n,2*k-1) * a(n-2*k+1).
a(n) ~ n! / ((cosh(r) - 1) * r^(n+1)), where r = 1.72911689821437486498840709347... is the root of the equation 1 + r - sinh(r) = 0. - Vaclav Kotesovec, Feb 08 2020
MATHEMATICA
nmax = 25; CoefficientList[Series[1/(1 + x - Sinh[x]), {x, 0, nmax}], x] Range[0, nmax]!
a[0] = 1; a[n_] := a[n] = Sum[Binomial[n, 2 k - 1] a[n - 2 k + 1], {k, 2, Ceiling[n/2]}]; Table[a[n], {n, 0, 25}]
PROG
(PARI) seq(n)={Vec(serlaplace(1 / (1 + x - sinh(x + O(x*x^n)))))} \\ Andrew Howroyd, Feb 08 2020
CROSSREFS
Sequence in context: A040419 A200092 A164812 * A327023 A280621 A223522
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Feb 08 2020
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 28 05:00 EDT 2024. Contains 375477 sequences. (Running on oeis4.)