A340579 Triangle read by rows: T(n,k) = A000203(n-k+1)*A000070(k-1), 1 <= k <= n.
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, 57, 30, 15, 16, 48, 42, 84, 76, 90, 45, 13, 30, 32, 84, 72, 133, 120, 135, 67, 18, 26, 60, 56, 144, 114, 210, 180, 201, 97, 12, 36, 52, 105, 96, 228, 180, 315, 268, 291, 139, 28, 24, 72, 91
Offset: 1
Examples
Triangle begins: 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, 57, 30; 15, 16, 48, 42, 84, 76, 90, 45; 13, 30, 32, 84, 72, 133, 120, 135, 67; 18, 26, 60, 56, 144, 114, 210, 180, 201, 97; 12, 36, 52, 105, 96, 228, 180, 315, 268, 291, 139; ... For n = 6 the calculation of every term of row 6 is as follows: ------------------------- k A000070 T(6,k) 1 1 * 12 = 12 2 2 * 6 = 12 3 4 * 7 = 28 4 7 * 4 = 28 5 12 * 3 = 36 6 19 * 1 = 19 . A000203 ------------------------- The sum of row 6 is 12 + 12 + 28 + 28 + 36 + 19 = 135, equaling A182738(6).
Crossrefs
Programs
-
PARI
row(n) = vector(n, k, sigma(n-k+1)*sum(i=0, k-1, numbpart(i))); \\ Michel Marcus, Jul 23 2021
Comments