OFFSET
1,3
COMMENTS
A solid (or 3D) partition of n describes a piling of boxes in a corner with heights nonincreasing away from the corner, and containing integers, similarly nonincreasing, that sum to n.
The shape of a solid partitions is defined as the plane partition containing the heights of the piling, irrespective of the numerical content of the boxes.
Equals number of solid partitions with total by layer equal to partitions of n with largest part m.
Conjecture: If A000219(k) == 0 (mod 3) then all terms of the k-th column of this triangle are also congruent to 0 (mod 3). - John Tyler Rascoe, Feb 08 2026
The above conjecture is false, it fails at column 14 see the Mathematics Stack Exchange link. - John Tyler Rascoe, Mar 16 2026
LINKS
Mathematics Stack Exchange, Proving a conjecture about solid partitions with a fixed number of parts, 2026.
Wouter Meeussen, Mma functions for plane and solid partitions
EXAMPLE
Table starts as:
1,
1, 3
1, 3, 6
1, 6, 6, 13
1, 6, 15, 13, 24
1, 9, 21, 37, 24, 48
1, 9, 30, 58, 75, 48, 86
...
T(4,2) = 6 since the solid partitions of 4 with shapes a plane partition of 2 are:
z[{{2,2}}], z[{{3,1}}], z[{{2},{2}}], z[{{3},{1}}], z[{{3}},{{1}}], z[{{2}},{{2}}]
with shapes equal to these plane partitions:
{{2}}, {{2}}, {{1,1}}, {{1,1}}, {{1},{1}}, {{1},{1}}
MATHEMATICA
Table[Tr@(Count[First[lapse[#]]&/@Flatten[sols=Table[solidformBTK[par], {par, IntegerPartitions[n]}] ], #]&/@planepartitions[k]), {n, 10}, {k, n}] (* using functions from link above, or with the faster second program: *)
Table[ Sum[Length[solidformBTK[TransposePartition@par]], {par, IntegerPartitions[n, {k}]} ], {n, 16}, {k, n}] (* with transposePartition[par:{_Integer..}]:=Count[par, i_/; i>=#]&/@Range[Max[par]] *)
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Wouter Meeussen, Feb 07 2025
STATUS
approved
