The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A293025 E.g.f.: exp(exp(x) - Sum_{i=0..5} x^i/i!). 2
1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 463, 1717, 4720, 11441, 25884, 56135, 2977313, 23524737, 125212889, 552517341, 2183244857, 8025931950, 124257251233, 1468856487536, 12433365625566, 85767520652726, 518324768774506, 2858925345803536, 26181976719735061 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,13
COMMENTS
a(n) is the number of set partitions of [n] into blocks of size > 5.
LINKS
FORMULA
E.g.f.: Product_{i>5} exp(x^i/i!).
MAPLE
a:= proc(n) option remember; `if`(n=0, 1, add(
a(n-j)*binomial(n-1, j-1), j=6..n))
end:
seq(a(n), n=0..35); # Alois P. Heinz, Sep 28 2017
MATHEMATICA
m = 31;
Exp[Exp[x] - Sum[x^i/i!, {i, 0, 5}]] + O[x]^m // CoefficientList[#, x]& // (# Range[0, m-1]!)& (* Jean-François Alcover, Mar 08 2021 *)
PROG
(PARI) my(x='x+O('x^66)); Vec(serlaplace(exp(exp(x)-1-x-x^2/2-x^3/6-x^4/24-x^5/120)))
CROSSREFS
Column k=5 of A293024.
Sequence in context: A343542 A142282 A270760 * A108834 A233310 A220716
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Sep 28 2017
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 May 20 16:51 EDT 2024. Contains 372719 sequences. (Running on oeis4.)