A096272 Triangle read by rows: T(n,k) counts solid partitions of n such that the maximum of planes, rows, columns and values is k.
1, 0, 4, 0, 6, 4, 0, 10, 12, 4, 0, 13, 30, 12, 4, 0, 18, 70, 36, 12, 4, 0, 19, 142, 94, 36, 12, 4, 0, 24, 274, 234, 100, 36, 12, 4, 0, 19, 501, 534, 258, 100, 36, 12, 4, 0, 18, 872, 1186, 630, 264, 100, 36, 12, 4, 0, 13, 1449, 2486, 1482, 654, 264, 100, 36, 12, 4, 0, 10, 2336, 5080, 3346, 1578, 660, 264, 100, 36, 12, 4
Offset: 1
Examples
Triangle T(n,k) begins: 1; 0, 4; 0, 6, 4; 0, 10, 12, 4; 0, 13, 30, 12, 4; 0, 18, 70, 36, 12, 4; ... T(16,2) = 1 because only { {{2,2},{2,2}}, {{2,2},{2,2}} } has only two planes, each plane has no more than 2 columns, each column no more than 2 rows and each element is no larger than 2.
Links
- Wouter Meeussen, Table of n, a(n) for n = 1..171 (18 rows)
- Wouter Meeussen, Mma functions for plane and solid partitions
Programs
-
Mathematica
Table[Count[Max[Max@(Flatten@(List@@#)),Max@@Map[Length,#,{-2}],Length/@List@@#,Length[#]]&/@Flatten[solidformBTK/@IntegerPartitions[n]] ,#]&/@Range[n],{n,1,12}]; (* see link for function definition *)
Comments