OFFSET
1,3
COMMENTS
LINKS
Robert Price, Table of n, a(n) for n = 1..1275, 50 rows.
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
KEYWORD
nonn,tabl
AUTHOR
Gary W. Adamson, Sep 02 2007
STATUS
approved