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!)
A114917 Number of partitions of {1,..,n} in which no part of a given size occurs just once. 3
1, 0, 1, 1, 4, 1, 71, 106, 1051, 2759, 19552, 51041, 864579, 3134132, 34990671, 211464345, 1832236004, 11261632321, 109973219879, 659853699654, 8379292553185, 58134013363151, 676374746166550, 5912498819726335, 71622214447120275, 658455096592878092 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
MAPLE
b:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<1, 0,
add(`if`(j=1, 0, b(n-i*j, i-1)*combinat[multinomial]
(n, n-i*j, i$j)/j!), j=0..min(n/i))))
end:
a:= n-> b(n$2):
seq(a(n), n=0..26); # Alois P. Heinz, May 14 2023
MATHEMATICA
multinomial[n_, k_List] := n!/Times @@ (k!);
b[n_, i_] := b[n, i] = If[n == 0, 1, If[i < 1, 0, Sum[If[j == 1, 0, b[n - i*j, i - 1]*multinomial[n, Prepend[Table[i, {j}], n - i*j]]/j!], {j, 0, Min[n/i]}]]];
a[n_] := b[n, n];
Table[a[n], {n, 0, 26}] (* Jean-François Alcover, May 26 2023, after Alois P. Heinz *)
CROSSREFS
Sequence in context: A069740 A173008 A298828 * A100864 A295178 A255192
KEYWORD
nonn
AUTHOR
Christian G. Bower, Jan 06 2006
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 April 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)