OFFSET
1,18
COMMENTS
A strict cuboid is a cuboid with all dimensions different to each other.
The partitions here must be valid packings of the n X n X n cube, hence T(n,k) is generally less than the number of partitions of n^3 into distinct cuboids (x,y,z) with 1 <= x,y,z <= n and volume x*y*z excluding x != y != z.
LINKS
Sean A. Irvine, Table of n, a(n) for n = 1..140
FORMULA
T(n,1) = 1,
T(n,k) = 0 for k > n^3.
EXAMPLE
Array begins:
1 0 0 0 0 ...
1 0 0 0 0 ...
1 1 0 2 1 ...
1 1 0 3 3 ...
1 2 0 4 10 ...
1 2 1 6 19 ...
1 3 1 6 30 ...
1 3 2 9 44 ...
1 4 3 8 64 ...
1 4 4 13 84 ...
...
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Janaka Rodrigo, Aug 05 2025
EXTENSIONS
More terms from Sean A. Irvine, Aug 05 2025
STATUS
approved
