A385154 a(n) is the least possible difference between the largest and smallest volumes of distinct five-cuboid combinations filling an n X n X n cube.
10, 12, 21, 28, 28, 62, 42, 80, 57, 112, 114, 143, 90, 156, 191, 288, 184, 224, 252, 396, 299, 288, 315, 504, 414, 546, 462, 720, 529, 816, 616, 837, 609, 648, 777, 1140, 858, 1260, 874, 1596, 1237, 1155, 810, 1554, 1468, 2064, 1118, 1950, 1343, 2080, 1590, 2268
Offset: 3
Examples
4 X 4 X 4 cube has 31 different ways of partitioning into five distinct cuboids and only two sets producing the minimum defects as calculated below: {(3,2,1), (3,3,2), (4,1,2), (4,2,2),(4,4,1)} has minimum defect = max(6,18,8,16,16) - min(6,18,8,16,16) = 18 - 6 = 12. {(4,4,1), (4,3,1), (2,3,3), (2,3,2), (2,3,1)} has minimum defect = max(16,12,18,12,6) - min(16,12,18,12,6) = 18 - 6 = 12. Therefore a(4) = 12.
Links
- Janaka Rodrigo, Python Code for Minimum defects of A(n)
- Janaka Rodrigo, Python Code for Minimum defects of B(n)
- Janaka Rodrigo, Python Code for Minimum defects of C(n)
Extensions
a(11)-a(20) from Sean A. Irvine, Jul 26 2025
a(21)-a(54) from Jinyuan Wang, Aug 04 2025
Comments