[go: up one dir, main page]

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!)
A343793 Number of ordered partitions of an n-set without blocks of size 10. 6
1, 1, 3, 13, 75, 541, 4683, 47293, 545835, 7087261, 102247562, 1622632551, 28091567067, 526858335797, 10641342662135, 230283183134017, 5315654473869451, 130370761261559229, 3385534496252337939, 92801582269262225397, 2677687636903407184463, 81124819758167172293305 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
E.g.f.: 1 / (2 + x^10/10! - exp(x)).
MAPLE
a:= proc(n) option remember; `if`(n=0, 1, add(
`if`(j=10, 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^10/10! - Exp[x]), {x, 0, nmax}], x] Range[0, nmax]!
a[n_] := a[n] = If[n == 0, 1, Sum[If[k == 10, 0, Binomial[n, k] a[n - k]], {k, 1, n}]]; Table[a[n], {n, 0, 21}]
CROSSREFS
Sequence in context: A343792 A276899 A276929 * A276900 A276930 A034172
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 August 29 23:34 EDT 2024. Contains 375520 sequences. (Running on oeis4.)