cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-6 of 6 results.

A384479 a(n) is the number of ways to partition n X n X n cube into 5 noncongruent cuboids.

Original entry on oeis.org

0, 0, 2, 31, 209, 560, 1561, 2852, 5894, 9093, 15778, 22304, 34805, 46194, 67399, 85610, 118461, 146218, 194363, 233941, 302115, 356523, 448831, 522153, 643781, 738976, 896563, 1017619, 1216376, 1368946, 1615516, 1803028, 2106173, 2333683, 2699501, 2974256, 3410946
Offset: 1

Views

Author

Janaka Rodrigo, May 30 2025

Keywords

Comments

Partitioning n X n X n cube is done by decomposing the triplet (n,n,n) into five unordered integer triplets of distinct element composition in three different stages and applying the inclusion-exclusion principle to obtain all geometrically feasible triplets without repetitions.
First stage:
Generating the sequence of sets A(n) of five triplets of distinct element composition by decomposing the triplet (n,n,n).
The number of sets in each term describes the number of ways a cube can be partitioned into five cuboids by cutting one of the cuboids in the previous stage into two cuboids. The algorithm explained in A381847 (partitioning into three cuboids) and A384311 (partitioning into four cuboids). As an example: A(3) = {{(3,3,1), (3,2,2), (3,1,1), (2,1,1), (1,1,1)}, {(3,2,2), (3,2,1), (2,2,1), (3,1,1), (2,1,1)}}.
Therefore the number of sets in A(3) is |A(3)| = 2.
Second stage:
Generating the sequence of sets B(n) of five triplets of distinct element composition by decomposing the triplet (n,n,n).
The number of sets in each term represents number of distinct five-cuboid combinations filling the n X n X n cube with three full-length axial spanning sharing only two cube corners each.
Sets of five distinct triplets of the n-th term are defined by {(n,n-x,y), (n,n-y,z), (n,n-z,x), (x,y,z), (n-x,n-y,n-z)}, where 0 < x,y,z < n.
The triplet (3,3,3) can be decomposed by the rule only in one way giving, B(3) = {{(1,3,1), (3,1,2), (2,2,3), (2,1,1), (1,2,2)}}. Therefore |B(3)| = 1.
Third stage:
Generating the sequence of sets C(n) of five triplets of distinct element composition by decomposing the triplet (n,n,n).
The number of sets in each term represents number of different ways to partition n X n X n cube into five distinct cuboids such that all five cuboids going across the cube parallel to each other avoiding any cut-plane that cuts through the whole pile.
Sets of five distinct triplets of the n-th term are defined by {(n,x,y), (n,p,y+q), (n,n-p,q), (n,n-p-x,n-q), (n,p+x,n-y-q)}, where p+x < n,q+y < n and 0 < x,y,p,q < n.
Triplets (1,1,1), (2,2,2) and (3,3,3) cannot be decomposed by this rule and the triplet (4,4,4) has only one way of decomposing, C(4) = {{(1,1,4), (1,2,4), (1,3,4), (2,2,4), (2,3,4)}}. Therefore |C(4)| = 1.
Since there are no intersections between B(n) and C(n), the number of ways to partition n X n X n cube is given by: a(n) = |A(n) union B(n) union C(n)| = |A(n)| + |B(n)| + |C(n)| - |A(n) intersection B(n)| - |A(n) intersection C(n)|.

Examples

			a(1) = a(2) = 0, since the cubes 1 X 1 X 1 and 2 X 2 X 2 can never be partitioned into five cuboids.
a(3) = |A(3)| + |B(3)| + |C(3)| - |A(3) intersection B(3)| - |A(3) intersection C(3)|= 2 + 1 + 0 - 1 - 0 = 2.
a(4) = |A(4)| + |B(4)| + |C(4)| - |A(4) intersection B(4)| - |A(4) intersection C(4)|= 30 + 3 + 1 - 2 - 1 = 31.
		

Crossrefs

Extensions

a(11)-a(16) from Sean A. Irvine, Jul 26 2025
More terms from Jinyuan Wang, Aug 03 2025

A385247 a(n) is the number of ways to partition n X n X n cube into 6 noncongruent cuboids.

Original entry on oeis.org

0, 0, 1, 70, 846, 3508, 12960, 30064, 74164, 134745, 266396
Offset: 1

Views

Author

Sean A. Irvine and Janaka Rodrigo, Jul 28 2025

Keywords

Comments

A386296 is the main sequence for this topic.
Alternatively a(n) is the number of distinct six-cuboid combinations filling an n X n X n cube.

Examples

			Let the elements x,y and z of the unordered triplet (x,y,z) be the dimensions of a cuboid of the set of distinct six-cuboid combinations. One of the sets of six distinct unordered triplets of a(4) representing a six-cuboid combinations filling 4 X 4 X 4 cube is,
{(3,4,4),(1,2,3),(1,2,2),(1,1,3),(1,1,2),(1,1,1)}.
		

Crossrefs

Column 6 of A386296.
Cf. A381847 (3 cuboids), A384311 (4 cuboids), A384479 (5 cuboids).

A385240 Array read by descending antidiagonals: T(n,k) is the number of k element sets of noncongruent integer sided rectangles that fill an n X n square.

Original entry on oeis.org

1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 2, 1, 1, 0, 0, 0, 3, 2, 1, 0, 0, 0, 3, 8, 2, 1, 0, 0, 0, 2, 15, 11, 3, 1, 0, 0, 0, 0, 19, 35, 19, 3, 1, 0, 0, 0, 0, 7, 87, 75, 23, 4, 1, 0, 0, 0, 0, 1, 114, 257, 119, 35, 4, 1, 0, 0, 0, 0, 0, 56, 593, 571, 210, 40, 5, 1, 0
Offset: 1

Views

Author

Janaka Rodrigo, Aug 26 2025

Keywords

Examples

			Array begins:
  1     0     0     0     0
  1     0     0     0     0
  1     1     2     0     0
  1     1     3     3     2
  1     2     8    15    19
  1     2    11    35    87
  1     3    19    75   257
  1     3    23   119   571
  1     4    35   210  1186
  1     4    40   289  2033
		

Crossrefs

Columns: A000012 (k=1), A004526 (k=2), A381847 (k=3), A387171 (k=4), A387241 (k=5).
Cf. A386296 (3-dimensional version).

Formula

T(n,1) = 1.
T(n,k) = 0 for k > n^2.

Extensions

More terms from Sean A. Irvine, Sep 02 2025

A386848 Array read by descending antidiagonals:T(n,k) is the number of ways to partition n X n X n cube into k noncongruent cuboids excluding strict cuboids.

Original entry on oeis.org

1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0, 0, 2, 0, 2, 1, 0, 0, 1, 3, 0, 2, 1, 0, 0, 1, 3, 4, 1, 3, 1, 0, 0, 0, 1, 10, 6, 1, 3, 1, 0, 0, 0, 6, 9, 19, 6, 2, 4, 1, 0, 0, 0, 5, 34, 24, 30, 9, 3, 4, 1, 0, 0, 0, 0, 78, 37, 47, 44, 8, 4, 5, 1, 0, 0, 0, 0, 93
Offset: 1

Views

Author

Janaka Rodrigo, Aug 05 2025

Keywords

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.

Examples

			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

Cf. A386296.
Columns: A004526(k=2), A211540(k=3), A386846(k=4), A386847(k=5).

Formula

T(n,1) = 1,
T(n,k) = 0 for k > n^3.

Extensions

More terms from Sean A. Irvine, Aug 05 2025

A386297 Array read by antidiagonals T(n,k) is the minimal defect across all partitions of an n X n X n cube into k noncongruent cuboids, or 0 if there is no such partition.

Original entry on oeis.org

9, 6, 32, 5, 24, 25, 10, 16, 20, 72, 8, 12, 16, 48, 49, 0, 12, 21, 36, 42, 128, 0, 12, 12, 28, 30, 112, 81, 0, 13, 12, 24, 28, 60, 54, 200, 0, 10, 16, 12, 24, 62, 48, 140, 121, 0, 15, 12, 18, 20, 41, 42, 100, 99, 288, 0, 0, 14, 12, 21, 26, 32, 80, 83, 192, 169
Offset: 3

Views

Author

Janaka Rodrigo, Jul 17 2025

Keywords

Comments

Let V(x,y,z)=x*y*z be the volume of a cuboid (x,y,z). For a given set of cuboids S, define 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 = max(S)-min(S).
T(n, k) = min(defect(S)) as S runs over all partitions of an n X n X n cuboid into k noncongruent cuboids.
A386296 gives the number of sets S.

Examples

			Array begins
   9     6     5     10
  32    24    16     12
  25    20    16     21
  72    48    36     28
  49    42    30     28
 128    80    60     62
  81    54    48     42
 200   140   100     80
The only set S of distinct six cuboids filling 3 X 3 X 3 cube in triplet form is, S = {(1,1,1), (1,1,2), (1,1,3), (1,2,2), (2,2,2), (1,3,3)} giving Min(S)=1, Max(S)=9, and defect(S) = 9-1 = 8. Since this is the only defect T(3,6)=8.
		

Crossrefs

Extensions

More terms from Sean A. Irvine, Jul 29 2025

A386903 Array read by descending antidiagonals: T(n,k) is the number of ways to partition n X n X n cube into k noncongruent strict cuboids, n>=5, k>=4.

Original entry on oeis.org

1, 0, 2, 3, 18, 9, 1, 64, 74, 12, 1, 143, 450, 193, 30, 0, 197, 2090, 1769, 491, 36, 0, 156, 8039, 13441, 5687, 857, 70, 0, 57, 24641, 88001, 56540, 12994, 1695, 80, 0, 5
Offset: 5

Views

Author

Janaka Rodrigo, Aug 07 2025

Keywords

Comments

A strict cuboid is a cuboid with all dimensions different.
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, x != y != z and volume x*y*z.
There are no solutions for n < 5 or k < 4.

Examples

			Array begins:
  n\k|  4     5      6       7      8      9
  ---+--------------------------------------
   5 |  1     0      3       1      1      0
   6 |  2    18     64     143    197    156
   7 |  9    74    450    2090   8039  24641
   8 | 12   193   1769   13441  88001      ?
   9 | 30   491   5687   56540      ?      ?
  10 | 36   857  12994  170052      ?      ?
  ...
		

Crossrefs

Cf. A386296.
Columns: A386884 (k=4), A386902 (k=5).
Showing 1-6 of 6 results.