|
|
A136157
|
|
Triangle by columns, (3, 1, 0, 0, 0, ...) in every column.
|
|
2
|
|
|
3, 1, 3, 0, 1, 3, 0, 0, 1, 3, 0, 0, 0, 1, 3, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3
(list;
table;
graph;
refs;
listen;
history;
text;
internal format)
|
|
|
OFFSET
|
1,1
|
|
COMMENTS
|
|
|
LINKS
|
|
|
FORMULA
|
Triangle by columns, (3, 1, 0, 0, 0, ...) in every column. By rows, for n>1, (n-1) zeros followed by 1, 3. Infinite lower triangular matrix with (3, 3, 3, ...) in the main diagonal and (1, 1, 1, ...) in the subdiagonal, with the rest zeros.
|
|
EXAMPLE
|
First few rows of the triangle:
3;
1, 3;
0, 1, 3;
0, 0, 1, 3;
0, 0, 0, 1, 3;
0, 0, 0, 0, 1, 3;
...
|
|
MATHEMATICA
|
Table[PadLeft[{1, 3}, n, {0}], {n, 20}]//Flatten (* Harvey P. Dale, Apr 04 2018 *)
|
|
CROSSREFS
|
|
|
KEYWORD
|
|
|
AUTHOR
|
|
|
STATUS
|
approved
|
|
|
|