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!)
A343789 Number of ordered partitions of an n-set without blocks of size 6. 6
1, 1, 3, 13, 75, 541, 4682, 47279, 545611, 7083565, 102182883, 1621425829, 28067555607, 526349480593, 10629883138059, 230009622202373, 5308749619032571, 130186940173803053, 3380385112758108315, 92650130825921846941, 2673020491585091254035, 80974418589343644492805 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
E.g.f.: 1 / (2 + x^6/6! - exp(x)).
MAPLE
a:= proc(n) option remember; `if`(n=0, 1, add(
`if`(j=6, 0, a(n-j)*binomial(n, j)), j=1..n))
end:
seq(a(n), n=0..21); # Alois P. Heinz, Apr 29 2021
MATHEMATICA
nmax = 21; CoefficientList[Series[1/(2 + x^6/6! - Exp[x]), {x, 0, nmax}], x] Range[0, nmax]!
a[n_] := a[n] = If[n == 0, 1, Sum[If[k == 6, 0, Binomial[n, k] a[n - k]], {k, 1, n}]]; Table[a[n], {n, 0, 21}]
CROSSREFS
Sequence in context: A343788 A276895 A276925 * A276896 A276926 A343790
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Apr 29 2021
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 June 6 12:53 EDT 2024. Contains 373128 sequences. (Running on oeis4.)