A319847 Irregular triangle read by rows in which row n lists the odd divisors of n in increasing order together with the even divisors of n in increasing order.
1, 1, 2, 1, 3, 1, 2, 4, 1, 5, 1, 3, 2, 6, 1, 7, 1, 2, 4, 8, 1, 3, 9, 1, 5, 2, 10, 1, 11, 1, 3, 2, 4, 6, 12, 1, 13, 1, 7, 2, 14, 1, 3, 5, 15, 1, 2, 4, 8, 16, 1, 17, 1, 3, 9, 2, 6, 18, 1, 19, 1, 5, 2, 4, 10, 20, 1, 3, 7, 21, 1, 11, 2, 22, 1, 23, 1, 3, 2, 4, 6, 8, 12, 24, 1, 5, 25, 1, 13, 2, 26, 1, 3, 9, 27
Offset: 1
Examples
Triangle begins: 1; 1, 2; 1, 3; 1, 2, 4; 1, 5; 1, 3, 2, 6; 1, 7; 1, 2, 4, 8; 1, 3, 9; 1, 5, 2, 10; 1, 11; 1, 3, 2, 4, 6, 12; 1, 13; 1, 7, 2, 14; 1, 3, 5, 15; 1, 2, 4, 8, 16; 1, 17; 1, 3, 9, 2, 6, 18; 1, 19; 1, 5, 2, 4, 10, 20; 1, 3, 7, 21; 1, 11, 2, 22; 1, 23; 1, 3, 2, 4, 6, 8, 12, 24; 1, 5, 25; 1, 13, 2, 26; 1, 3, 9, 27; 1, 7, 2, 4, 14, 28; ... For n = 12 the divisors of 12 are [1, 2, 3, 4, 6, 12]. The odd divisors of 12 in increasing order are [1, 3], and the even divisors of 12 in increasing order are [2, 4, 6, 12], so the 12th row of triangle is [1, 3, 2, 4, 6, 12]. On the other hand, consider the diagram that appears in the Links section (figure 1). Then consider only the semicircumferences that contain the point [12,0]. In the second quadrant, from top to bottom, we can see the curves with diameters [12, 4]. Also we can see these curves in the fourth quadrant from bottom to top. The associated numbers c = 12/d are [1, 3] respectively. These are the odd divisors of 12 in increasing order. Then, in the first quadrant, from top to bottom, we can see the curves with diameters [6, 3, 2, 1]. Also we can see these curves in the third quadrant from bottom to top. The associated numbers c = 12/d are [2, 4, 6, 12] respectively. These are the even divisors of n in increasing order. Finally all numbers c obtained are [1, 3, 2, 4, 6, 12] equaling the 12th row of triangle.
Links
Crossrefs
Programs
-
PARI
row(n) = my(d=divisors(n)); concat(select(x->(x%2), d), select(x->!(x%2), d)); lista(nn) = {for (n=1, nn, my(r = row(n)); for (k=1, #r, print1(r[k], ", ")););} \\ Michel Marcus, Jan 17 2019
Comments