A143273 Triangle read by rows: A127648 * A000012 * A130209.
1, 2, 4, 3, 6, 6, 4, 8, 8, 12, 5, 10, 10, 15, 10, 6, 12, 12, 18, 12, 24, 7, 14, 14, 21, 14, 28, 14, 8, 16, 16, 24, 16, 32, 16, 32, 9, 18, 18, 27, 18, 36, 18, 36, 27, 10, 20, 20, 30, 20, 40, 20, 40, 30, 40, 11, 22, 22, 33, 22, 44, 22, 44, 33, 44, 22
Offset: 1
Examples
First few rows of the triangle = 1; 2, 4; 3, 6, 6; 4, 8, 8, 12; 5, 10, 10, 15, 10; 6, 12, 12, 18, 12, 24; 7, 14, 14, 21, 14, 28, 14; 8, 16, 16, 24, 16, 32, 16, 32; ... T(6,3) = 12 = 6*d(3) = 6*2, where A000005 = d(k) = (1, 2, 3, 2, 2, 4, 2, 4, 3, ...).
Programs
-
PARI
tabl(nn) = for (n=1, nn, for (k=1, n, print1(n*numdiv(k), ", "))); \\ Michel Marcus, Mar 19 2016
Formula
T(n,k) = n*d(k).
Extensions
a(48) = 20 inserted by Georg Fischer, Jun 05 2023
Comments