login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A341049 Irregular triangle read by rows T(n,k) in which row n lists the terms of n-th row of A336811 in nondecreasing order. 1
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, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 6, 6, 7, 8, 10 (list; graph; refs; listen; history; text; internal format)
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.
For further information about the correspondence divisor/part see A338156 and A336812.
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
Mirror of A336811.
Row n has length A000041(n-1).
Row sums give A000070.
Right border gives A000027.
Sequence in context: A089384 A365138 A228812 * A144113 A370329 A304038
KEYWORD
nonn,tabf
AUTHOR
Omar E. Pol, Feb 04 2021
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 16 12:52 EDT 2024. Contains 371711 sequences. (Running on oeis4.)