OFFSET
3,1
COMMENTS
Developed as the three dimensional extension of the Mondrian Art Problem.
Alternatively, a(n) is the optimal solution when an n X n X n cube is partitioning into 3 cuboids of different dimensions.
Let elements of the unordered integer triplet (x,y,z) be the dimensions of cuboid in a set of three cuboids.
Let V(x,y,z) = x*y*z be the volume and for a given set of triplets S, Min(S) = min{V(x,y,z):(x,y,z) in S}, Max(S) = max{V(x,y,z):(x,y,z) in S}, and defect(S) = Max(S)-Min(S).
a(n) is the least possible value of the defect as S runs over the possible partitions of the n X n X n cuboid into 3 cuboids of different dimensions.
LINKS
Janaka Rodrigo, Python program
EXAMPLE
4 X 4 X 4 cube can be partitioned in three different ways and defects of sets are calculated as follows:
{(4,3,3), (4,3,1), (4,4,1)}: defect = max(36,12,16)-min(36,12,16) = 36-12=24,
{(4,2,1), (4,3,2), (4,4,2)}: defect = max(8,24,32)-min(8,24,32) = 32-8=24,
{(4,4,3), (4,3,1), (4,1,1)}: defect = max(48,12,4)-min(48,12,4) = 48-4=44.
Therefore, a(4) = min{24, 24, 44} = 24.
CROSSREFS
KEYWORD
nonn
AUTHOR
Janaka Rodrigo, Jun 19 2025
STATUS
approved
