A272214 Square array read by antidiagonals upwards in which T(n,k) is the product of the n-th prime and the sum of the divisors of k, n >= 1, k >= 1.
2, 3, 6, 5, 9, 8, 7, 15, 12, 14, 11, 21, 20, 21, 12, 13, 33, 28, 35, 18, 24, 17, 39, 44, 49, 30, 36, 16, 19, 51, 52, 77, 42, 60, 24, 30, 23, 57, 68, 91, 66, 84, 40, 45, 26, 29, 69, 76, 119, 78, 132, 56, 75, 39, 36, 31, 87, 92, 133, 102, 156, 88, 105, 65, 54, 24, 37, 93, 116, 161, 114, 204, 104, 165, 91, 90, 36, 56
Offset: 1
Examples
The corner of the square array begins: 2, 6, 8, 14, 12, 24, 16, 30, 26, 36, ... 3, 9, 12, 21, 18, 36, 24, 45, 39, 54, ... 5, 15, 20, 35, 30, 60, 40, 75, 65, 90, ... 7, 21, 28, 49, 42, 84, 56, 105, 91, 126, ... 11, 33, 44, 77, 66, 132, 88, 165, 143, 198, ... 13, 39, 52, 91, 78, 156, 104, 195, 169, 234, ... 17, 51, 68, 119, 102, 204, 136, 255, 221, 306, ... 19, 57, 76, 133, 114, 228, 152, 285, 247, 342, ... 23, 69, 92, 161, 138, 276, 184, 345, 299, 414, ... 29, 87, 116, 203, 174, 348, 232, 435, 377, 522, ... ... From _Omar E. Pol_, Dec 21 2021: (Start) Written as a triangle the sequence begins: 2; 3, 6; 5, 9, 8; 7, 15, 12, 14; 11, 21, 20, 21, 12; 13, 33, 28, 35, 18, 24; 17, 39, 44, 49, 30, 36, 16; 19, 51, 52, 77, 42, 60, 24, 30; 23, 57, 68, 91, 66, 84, 40, 45, 26; 29, 69, 76, 119, 78, 132, 56, 75, 39, 36; 31, 87, 92, 133, 102, 156, 88, 105, 65, 54, 24; ... Row sums give A086718. (End)
Links
- Ivan Neretin, Table of n, a(n) for n = 1..8128
Crossrefs
Programs
-
Mathematica
Table[Prime[#] DivisorSigma[1, k] &@(n - k + 1), {n, 12}, {k, n}] // Flatten (* Michael De Vlieger, Apr 28 2016 *)
Comments