login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A344086
Flattened tetrangle of strict integer partitions sorted first by sum, then lexicographically.
10
1, 2, 2, 1, 3, 3, 1, 4, 3, 2, 4, 1, 5, 3, 2, 1, 4, 2, 5, 1, 6, 4, 2, 1, 4, 3, 5, 2, 6, 1, 7, 4, 3, 1, 5, 2, 1, 5, 3, 6, 2, 7, 1, 8, 4, 3, 2, 5, 3, 1, 5, 4, 6, 2, 1, 6, 3, 7, 2, 8, 1, 9, 4, 3, 2, 1, 5, 3, 2, 5, 4, 1, 6, 3, 1, 6, 4, 7, 2, 1, 7, 3, 8, 2, 9, 1, 10
OFFSET
0,2
COMMENTS
The zeroth row contains only the empty partition.
A tetrangle is a sequence of finite triangles.
EXAMPLE
Tetrangle begins:
0: ()
1: (1)
2: (2)
3: (21)(3)
4: (31)(4)
5: (32)(41)(5)
6: (321)(42)(51)(6)
7: (421)(43)(52)(61)(7)
8: (431)(521)(53)(62)(71)(8)
9: (432)(531)(54)(621)(63)(72)(81)(9)
MATHEMATICA
lexsort[f_, c_]:=OrderedQ[PadRight[{f, c}]];
Table[Sort[Select[IntegerPartitions[n], UnsameQ@@#&], lexsort], {n, 0, 8}]
CROSSREFS
Positions of first appearances are A015724.
Triangle sums are A066189.
Taking revlex instead of lex gives A118457.
The not necessarily strict version is A193073.
The version for reversed partitions is A246688.
The Heinz numbers of these partitions grouped by sum are A246867.
The ordered generalization is A339351.
Taking colex instead of lex gives A344087.
A026793 gives reversed strict partitions in A-S order (sum/length/lex).
A319247 sorts reversed strict partitions by Heinz number.
A329631 sorts strict partitions by Heinz number.
A344090 gives strict partitions in A-S order (sum/length/lex).
Sequence in context: A291123 A292594 A093613 * A335933 A344087 A118816
KEYWORD
nonn,tabf
AUTHOR
Gus Wiseman, May 11 2021
STATUS
approved