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.

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

This page as a plain text file.
%I A340579 #48 Jul 27 2021 01:39:27
%S A340579 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 A340579 57,30,15,16,48,42,84,76,90,45,13,30,32,84,72,133,120,135,67,18,26,60,
%U A340579 56,144,114,210,180,201,97,12,36,52,105,96,228,180,315,268,291,139,28,24,72,91
%N A340579 Triangle read by rows: T(n,k) = A000203(n-k+1)*A000070(k-1), 1 <= k <= n.
%C A340579 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 A340579 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 A340579 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 A340579 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 A340579 The growth of the volume represents the convolution of A000203 and A000070.
%C A340579 The symmetric tower is a member of the family of the pyramid described in A245092.
%C A340579 For another symmetric tower of the same family and whose volume equals A066186(n) see A221529 and A339106.
%e A340579 Triangle begins:
%e A340579    1;
%e A340579    3,   2;
%e A340579    4,   6,   4;
%e A340579    7,   8,  12,   7;
%e A340579    6,  14,  16,  21,  12;
%e A340579   12,  12,  28,  28,  36,  19;
%e A340579    8,  24,  24,  49,  48,  57,  30;
%e A340579   15,  16,  48,  42,  84,  76,  90,  45;
%e A340579   13,  30,  32,  84,  72, 133, 120, 135,  67;
%e A340579   18,  26,  60,  56, 144, 114, 210, 180, 201,  97;
%e A340579   12,  36,  52, 105,  96, 228, 180, 315, 268, 291, 139;
%e A340579 ...
%e A340579 For n = 6 the calculation of every term of row 6 is as follows:
%e A340579 -------------------------
%e A340579 k   A000070        T(6,k)
%e A340579 1      1  *  12  =   12
%e A340579 2      2  *  6   =   12
%e A340579 3      4  *  7   =   28
%e A340579 4      7  *  4   =   28
%e A340579 5     12  *  3   =   36
%e A340579 6     19  *  1   =   19
%e A340579 .         A000203
%e A340579 -------------------------
%e A340579 The sum of row 6 is 12 + 12 + 28 + 28 + 36 + 19 = 135, equaling A182738(6).
%o A340579 (PARI) row(n) = vector(n, k, sigma(n-k+1)*sum(i=0, k-1, numbpart(i))); \\ _Michel Marcus_, Jul 23 2021
%Y A340579 Row sums give A182738.
%Y A340579 Cf. A000070, A000203, A024916, A221529, A221531, A237593, A339106, A340424, A340426, A340524, A340525, A340526, A340527, A340531.
%K A340579 nonn,tabl
%O A340579 1,2
%A A340579 _Omar E. Pol_, Jan 12 2021