OFFSET
1,3
FORMULA
A042965: (1, 3, 4, 5, 7, 8, 9, 11, 12, 13, ...) as the diagonal of an infinite lower triangular matrix and the rest zeros.
EXAMPLE
First few rows of the triangle:
1;
0, 3;
0, 0, 4;
0, 0, 0, 5;
0, 0, 0, 0, 7;
...
PROG
(PARI) row(n) = vector(n, k, if (k==n, (4*n+1)\3)); \\ Michel Marcus, Mar 07 2022
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Gary W. Adamson, Sep 12 2007
EXTENSIONS
More terms from Michel Marcus, Mar 07 2022
STATUS
approved