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!)
A343542 Number of ways to partition n labeled elements into sets of different sizes of at least 5. 3
1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 463, 793, 3004, 5006, 14444, 23817, 62323, 14805403, 35175993, 177791475, 745977222, 2333540804, 7589340982, 29027728612, 81515120641, 23232813583331, 69799133324911, 436678552247551, 2215090972333651, 13529994077951557, 48863594588239153 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,12
LINKS
FORMULA
E.g.f.: Product_{k>=5} (1 + x^k/k!).
MAPLE
b:= proc(n, i) option remember; `if`(n=0, 1,
`if`(i>n, 0, b(n, i+1)+binomial(n, i)*b(n-i, i+1)))
end:
a:= n-> b(n, 5):
seq(a(n), n=0..31); # Alois P. Heinz, Apr 28 2021
MATHEMATICA
nmax = 31; CoefficientList[Series[Product[(1 + x^k/k!), {k, 5, nmax}], {x, 0, nmax}], x] Range[0, nmax]!
a[0] = 1; a[n_] := a[n] = -(n - 1)! Sum[DivisorSum[k, # (-#!)^(-k/#) &, # > 4 &] a[n - k]/(n - k)!, {k, 1, n}]; Table[a[n], {n, 0, 31}]
CROSSREFS
Sequence in context: A020371 A234842 A116323 * A142282 A270760 A293025
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Apr 28 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 May 16 15:45 EDT 2024. Contains 372554 sequences. (Running on oeis4.)