A176208
An irregular table with shape sequence A058884 measuring the length of ordered partitions defined by A176207.
Original entry on oeis.org
2, 2, 3, 2, 2, 3, 3, 4, 2, 3, 2, 3, 3, 4, 4, 5, 2, 2, 3, 3, 4, 2, 3, 3, 4, 3, 4, 5, 4, 5, 6, 2, 3, 2, 3, 3, 4, 3, 4, 5, 2, 3, 3, 4, 3, 4, 5, 4, 4, 5, 6, 5, 6, 7, 2, 2, 3, 3, 4, 2, 3, 3, 4, 3, 4, 5, 4, 4, 5, 6, 2, 3, 3, 4, 3, 4, 5, 3, 4, 4, 5, 6, 4, 5, 5, 6, 7, 5, 6, 7, 8
Offset: 3
A058884 begins -1 0 0 1 2 5 8 15 ..., counting
12
13 121
23 14 131 122 1211
...
so triangle T(n,k) begins:
2;
2, 3;
2, 2, 3, 3, 4;
2, 3, 2, 3, 3, 4, 4, 5;
2, 2, 3, 3, 4, 2, 3, 3, 4, 3, 4, 5, 4, 5, 6;
...
-
L(n,k)={vecsort([Vecrev(p) | p<-partitions(k), p[#p] > n-k], , 4)}
row(n)={ concat(vector(n-1, k, [#p + 1 | p<-L(n,k)])) }
for(n=3, 8, print(row(n))) \\ Andrew Howroyd, Apr 21 2023
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.
Original entry on oeis.org
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
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)
-
Table[Flatten[Table[ConstantArray[n-k,PartitionsP[k]],{k,0,n-1}]],{n,10}] (* Paolo Xausa, May 30 2022 *)
New name, changed offset, edited and more terms from
Omar E. Pol, Nov 22 2020
Showing 1-2 of 2 results.
Comments