OFFSET
0,6
COMMENTS
Multiplied by the vector [1, 2, 3, ...] from the right gives (1, 2, 6, 12, 20, 30, 42, ...), A002378.
Triangle T(n,k), read by rows, given by [0,0,0,0,0,0,0,...] DELTA [1,1,-1,1,0,0,0,0,0,...] where DELTA is the operator defined in A084938. - Philippe Deléham, Oct 26 2007
FORMULA
Triangle read by rows, a(0) = 1, then for n > 0, n zeros followed by n. Infinite lower triangular matrix with (1, 1, 2, 3, 4, ...) in the main diagonal and the rest zeros.
G.f.: (1-x*y+x^2*y^2)/(-1+x*y)^2. - R. J. Mathar, Aug 11 2015
EXAMPLE
First few rows of the triangle:
1;
0, 1;
0, 0, 2;
0, 0, 0, 3;
0, 0, 0, 0, 4;
0, 0, 0, 0, 0, 5;
...
MATHEMATICA
Join[{1}, Flatten[Table[PadLeft[{n}, n+1, 0], {n, 15}]]] (* Harvey P. Dale, May 08 2012 *)
CROSSREFS
KEYWORD
AUTHOR
Gary W. Adamson, Oct 23 2007
STATUS
approved