login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A132825
Triangle read by rows: zeros except for right border which are the partition numbers A000041.
2
1, 0, 2, 0, 0, 3, 0, 0, 0, 5, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 56, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 101
OFFSET
1,3
COMMENTS
Row sums = partition numbers, A000041 starting with A000041(1).
A132825 * [1, 2, 3, ...] = A066186.
FORMULA
Infinite lower triangular matrix, partition numbers (A000041, starting 1, 2, 3, 5, 7, 11, ...) in the main diagonal and the rest zeros.
EXAMPLE
First few rows of the triangle:
1;
0, 2;
0, 0, 3;
0, 0, 0, 5;
0, 0, 0, 0, 7;
0, 0, 0, 0, 0, 11;
...
MATHEMATICA
Table[Join[ConstantArray[0, n - 1], {PartitionsP[n]}], {n, 13}] // Flatten (* Robert Price, May 19 2020 *)
Table[Join[PadRight[{}, n-1, 0], {PartitionsP[n]}], {n, 20}]//Flatten (* Harvey P. Dale, Sep 14 2021 *)
CROSSREFS
Sequence in context: A127648 A212209 A259481 * A259480 A280164 A049597
KEYWORD
nonn,tabl
AUTHOR
Gary W. Adamson, Sep 02 2007
STATUS
approved