OFFSET
0,3
COMMENTS
A twice partition of n is a sequence of integer partitions, one of each part in an integer partition of n. It is length-rectangular if all parts have the same number of parts.
EXAMPLE
The a(5) = 14 length-rectangular twice-partitions:
[5] [4 1] [3 2] [3 1 1] [2 2 1] [2 1 1 1] [1 1 1 1 1]
.
[4] [3] [2 1]
[1] [2] [1 1]
.
[3] [2]
[1] [2]
[1] [1]
.
[2]
[1]
[1]
[1]
.
[1]
[1]
[1]
[1]
[1]
MATHEMATICA
Table[Length[Join@@Table[Select[Tuples[IntegerPartitions/@ptn], SameQ@@Length/@#&], {ptn, IntegerPartitions[n]}]], {n, 20}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Feb 07 2019
STATUS
approved