OFFSET
1,2
COMMENTS
All divisors of all terms of n-th row are also all parts of the last section of the set of partitions of n.
All divisors of all terms of the first n rows are also all parts of all partitions of n. In other words: all divisors of the first A000070(n-1) terms of the sequence are also all parts of all partitions of n.
LINKS
EXAMPLE
Triangle begins:
1;
2;
1, 3;
1, 2, 4;
1, 1, 2, 3, 5;
1, 1, 2, 2, 3, 4, 6;
1, 1, 1, 1, 2, 2, 3, 3, 4, 5, 7;
1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 4, 4, 5, 6, 8;
1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 5, 5, 6, 7, 9;
...
MATHEMATICA
A341049[rowmax_]:=Table[Flatten[Table[ConstantArray[n-m, PartitionsP[m]-PartitionsP[m-1]], {m, n-1, 0, -1}]], {n, rowmax}];
A341049[10] (* Generates 10 rows *) (* Paolo Xausa, Feb 17 2023 *)
PROG
(PARI)
A341049(rowmax)=vector(rowmax, n, concat(vector(n, m, vector(numbpart(n-m)-numbpart(n-m-1), i, m))));
A341049(10) \\ Generates 10 rows - Paolo Xausa, Feb 17 2023
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Omar E. Pol, Feb 04 2021
STATUS
approved