Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Triangle read by rows: T(n,k) = A000203(n-k+1)*A000070(k-1), 1 <= k <= n.
2

%I #48 Jul 27 2021 01:39:27

%S 1,3,2,4,6,4,7,8,12,7,6,14,16,21,12,12,12,28,28,36,19,8,24,24,49,48,

%T 57,30,15,16,48,42,84,76,90,45,13,30,32,84,72,133,120,135,67,18,26,60,

%U 56,144,114,210,180,201,97,12,36,52,105,96,228,180,315,268,291,139,28,24,72,91

%N Triangle read by rows: T(n,k) = A000203(n-k+1)*A000070(k-1), 1 <= k <= n.

%C Consider a symmetric tower (a polycube) in which the terraces are the symmetric representation of sigma (n..1) respectively starting from the base (cf. A237270, A237593). The total area of the terraces equals A024916(n), the same as the area of the base.

%C The levels of the terraces starting from the base are the first n terms of A000070, that is A000070(0)..A000070(n-1), hence the differences between two successive levels give the partition numbers A000041, that is A000041(0)..A000041(n-1).

%C T(n,k) is the total volume (or total number of cubes) exactly below the symmetric representation of sigma(n-k+1). In other words: T(n,k) is the total volume (the total number of cubes) exactly below the terraces that are in the k-th level that contains terraces starting from the base.

%C This symmetric tower has the property that its volume (the total number of cubes) equals A182738(n), the sum of all parts of all partitions of all positive integers <= n. That is due to the correspondence between divisors and partitions (cf. A336811).

%C The growth of the volume represents the convolution of A000203 and A000070.

%C The symmetric tower is a member of the family of the pyramid described in A245092.

%C For another symmetric tower of the same family and whose volume equals A066186(n) see A221529 and A339106.

%e Triangle begins:

%e 1;

%e 3, 2;

%e 4, 6, 4;

%e 7, 8, 12, 7;

%e 6, 14, 16, 21, 12;

%e 12, 12, 28, 28, 36, 19;

%e 8, 24, 24, 49, 48, 57, 30;

%e 15, 16, 48, 42, 84, 76, 90, 45;

%e 13, 30, 32, 84, 72, 133, 120, 135, 67;

%e 18, 26, 60, 56, 144, 114, 210, 180, 201, 97;

%e 12, 36, 52, 105, 96, 228, 180, 315, 268, 291, 139;

%e ...

%e For n = 6 the calculation of every term of row 6 is as follows:

%e -------------------------

%e k A000070 T(6,k)

%e 1 1 * 12 = 12

%e 2 2 * 6 = 12

%e 3 4 * 7 = 28

%e 4 7 * 4 = 28

%e 5 12 * 3 = 36

%e 6 19 * 1 = 19

%e . A000203

%e -------------------------

%e The sum of row 6 is 12 + 12 + 28 + 28 + 36 + 19 = 135, equaling A182738(6).

%o (PARI) row(n) = vector(n, k, sigma(n-k+1)*sum(i=0, k-1, numbpart(i))); \\ _Michel Marcus_, Jul 23 2021

%Y Row sums give A182738.

%Y Cf. A000070, A000203, A024916, A221529, A221531, A237593, A339106, A340424, A340426, A340524, A340525, A340526, A340527, A340531.

%K nonn,tabl

%O 1,2

%A _Omar E. Pol_, Jan 12 2021