OFFSET
0,6
COMMENTS
The first entry in each row is 1, the last entry in each of the rows consist of the positive integers (starting 1,1,2,3,...), and all other entries in the triangle are 0's (see example).
LINKS
G. C. Greubel, Rows n = 0..50 of the triangle, flattened
FORMULA
EXAMPLE
First few rows of the triangle:
1;
1, 1;
1, 0, 2;
1, 0, 0, 3;
1, 0, 0, 0, 4;
1, 0, 0, 0, 0, 5;
1, 0, 0, 0, 0, 0, 6;
1, 0, 0, 0, 0, 0, 0, 7;
1, 0, 0, 0, 0, 0, 0, 0, 8;
1, 0, 0, 0, 0, 0, 0, 0, 0, 9;
1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10;
MATHEMATICA
T[n_, k_]:= If[k==0, 1, If[k==n, n, 0]];
Table[T[n, k], {n, 0, 14}, {k, 0, n}]//Flatten (* G. C. Greubel, Dec 23 2021 *)
PROG
(Sage)
def A145677(n, k):
if (k==0): return 1
elif (k==n): return n
else: return 0
flatten([[A145677(n, k) for k in (0..n)] for n in (0..14)]) # G. C. Greubel, Dec 23 2021
CROSSREFS
KEYWORD
AUTHOR
Gary W. Adamson and Roger L. Bagula, Mar 28 2009
EXTENSIONS
Edited by R. J. Mathar, Oct 02 2009
STATUS
approved