OFFSET
0,19
COMMENTS
We say that a set or sequence of nonempty sets is choosable iff it is possible to choose a different element from each set. For example, ({1,2},{1},{1,3}) is choosable because we have the choice (2,1,3), but ({1},{1,2},{2}) is not. The initial interval of a nonnegative integer x is the set {1,...,x}.
Conjecture: Also the number of non-superdiagonal reversed partitions of n into k parts, where a sequence (y_1, ..., y_k) is superdiagonal iff y_i >= i for all i = 1..k.
EXAMPLE
Row n = 9 counts the following partitions:
(711) (3222) (22221) (222111) (2211111) (21111111) (111111111)
(3321) (32211) (321111) (3111111)
(4221) (33111) (411111)
(4311) (42111)
(5211) (51111)
(6111)
Triangle begins:
0
0 0
0 0 1
0 0 0 1
0 0 0 1 1
0 0 0 2 1 1
0 0 0 2 2 1 1
0 0 0 1 3 2 1 1
0 0 0 1 5 3 2 1 1
0 0 0 1 6 5 3 2 1 1
0 0 0 1 8 7 5 3 2 1 1
0 0 0 1 7 10 7 5 3 2 1 1
0 0 0 1 8 13 11 7 5 3 2 1 1
0 0 0 1 7 18 14 11 7 5 3 2 1 1
0 0 0 1 8 23 20 15 11 7 5 3 2 1 1
0 0 0 1 8 29 26 21 15 11 7 5 3 2 1 1
0 0 0 1 9 32 35 28 22 15 11 7 5 3 2 1 1
0 0 0 1 9 36 44 38 29 22 15 11 7 5 3 2 1 1
0 0 0 1 10 38 58 49 40 30 22 15 11 7 5 3 2 1 1
0 0 0 1 10 41 71 65 52 41 30 22 15 11 7 5 3 2 1 1
0 0 0 1 11 45 90 82 70 54 42 30 22 15 11 7 5 3 2 1 1
MATHEMATICA
Table[Length[Select[IntegerPartitions[n, {k}], Select[Tuples[Range/@#], UnsameQ@@#&]=={}&]], {n, 0, 10}, {k, 0, n}]
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Gus Wiseman, Sep 24 2025
STATUS
approved
