A176206 Irregular triangle T(n,k) (n >= 1, k >= 1) read by rows: row n has length A000070(n-1) and every column k gives the positive integers.
1, 2, 1, 3, 2, 1, 1, 4, 3, 2, 2, 1, 1, 1, 5, 4, 3, 3, 2, 2, 2, 1, 1, 1, 1, 1, 6, 5, 4, 4, 3, 3, 3, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 7, 6, 5, 5, 4, 4, 4, 3, 3, 3, 3, 3, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 7, 6, 6, 5, 5, 5, 4, 4, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3
Offset: 1
Examples
Triangle begins: 1; 2, 1; 3, 2, 1, 1; 4, 3, 2, 2, 1, 1, 1; 5, 4, 3, 3, 2, 2, 2, 1, 1, 1, 1, 1; 6, 5, 4, 4, 3, 3, 3, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1; 7, 6, 5, 5, 4, 4, 4, 3, 3, 3, 3, 3, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, ... ... Extended by _Omar E. Pol_, Nov 23 2020 From _Omar E. Pol_, Jan 25 2020: (Start) For n = 5, by definition the length of row 5 is A000070(5-1) = A000070(4) = 12, so the row 5 of triangle has 12 terms. Since every column lists the positive integers A000027 so the row 5 is [5, 4, 3, 3, 2, 2, 2, 1, 1, 1, 1, 1]. Then we have that the divisors of the numbers of the 5th row are: . 5th row of triangle -----> 5 4 3 3 2 2 2 1 1 1 1 1 1 2 1 1 1 1 1 1 . There are twelve 1's, four 2's, two 3's, one 4 and one 5. In total there are 12 + 4 + 2 + 1 + 1 = 20 divisors. On the other hand the partitions of 5 are as shown below: . . 5 . 3 2 . 4 1 . 2 2 1 . 3 1 1 . 2 1 1 1 . 1 1 1 1 1 . There are twelve 1's, four 2's, two 3's, one 4 and one 5, as shown also in the 5th row of triangle A066633. In total there are 12 + 4 + 2 + 1 + 1 = A006128(5) = 20 parts. Finally in accordance with the conjecture we can see that all divisors of all numbers in the 5th row of the triangle are the same positive integers as all parts of all partitions of 5. (End)
Links
Crossrefs
Programs
-
Mathematica
Table[Flatten[Table[ConstantArray[n-k,PartitionsP[k]],{k,0,n-1}]],{n,10}] (* Paolo Xausa, May 30 2022 *)
Extensions
New name, changed offset, edited and more terms from Omar E. Pol, Nov 22 2020
Comments