OFFSET
0,3
COMMENTS
A vertical section is a partial Young diagram with at most one square in each row. For example, a partition (shown as a coloring by positive integers) into vertical sections of the Young diagram of (322) is:
1 2 3
1 2
2 3
EXAMPLE
The a(4) = 37 partitions into vertical sections of integer partitions of 4:
1 2 3 4
.
1 2 3 1 2 3 1 2 3 1 2 3
4 3 2 1
.
1 2 1 2 1 2 1 2 1 2 1 2 1 2
3 4 2 3 3 2 1 3 1 2 3 1 2 1
.
1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2
3 3 2 3 2 1 1 3 2 1
4 3 3 2 2 3 2 1 1 1
.
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
2 2 2 2 2 1 1 2 2 2 2 1 1 2 1
3 3 2 3 2 2 2 1 1 3 2 1 2 1 1
4 3 3 2 2 3 2 3 2 1 1 2 1 1 1
MATHEMATICA
spsu[_, {}]:={{}}; spsu[foo_, set:{i_, ___}]:=Join@@Function[s, Prepend[#, s]&/@spsu[Select[foo, Complement[#, Complement[set, s]]=={}&], Complement[set, s]]]/@Cases[foo, {i, ___}];
ptnpos[y_]:=Position[Table[1, {#}]&/@y, 1];
ptnverts[y_]:=Select[Rest[Subsets[ptnpos[y]]], UnsameQ@@First/@#&];
Table[Sum[Length[spsu[ptnverts[y], ptnpos[y]]], {y, IntegerPartitions[n]}], {n, 6}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Nov 19 2018
EXTENSIONS
a(11)-a(24) from Ludovic Schwob, Aug 28 2023
STATUS
approved