OFFSET
0,6
FORMULA
G.f. of row n: x*(1+x^n)/((1-x)^2*(1-x^n)), some cross-referenced sequences omitting the factor x and the initial term 0.
EXAMPLE
Square array begins:
0, 1, 4, 9,16,25,36,49,64,81,100,121, ... (A000290)
0, 1, 2, 5, 8,13,18,25,32,41, 50, 61, ... (A000982)
0, 1, 2, 3, 6, 9,12,17,22,27, 34, 41, ... (A008810)
0, 1, 2, 3, 4, 7,10,13,16,21, 26, 31, ... (A008811)
0, 1, 2, 3, 4, 5, 8,11,14,17, 20, 25, ... (A008812)
0, 1, 2, 3, 4, 5, 6, 9,12,15, 18, 21, ... (A008813)
0, 1, 2, 3, 4, 5, 6, 7,10,13, 16, 19, ... (A008814)
0, 1, 2, 3, 4, 5, 6, 7, 8,11, 14, 17, ... (A008815)
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 15, ... (A008816)
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, ... (A008817)
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14,... not in the OEIS
...
MATHEMATICA
nmax = 15;
ro[n_] := ro[n] = CoefficientList[x(1+x^n)/((1-x)^2 (1-x^n))+O[x]^nmax, x];
T[n_, k_] := ro[n][[k+1]];
Table[T[n-k, k], {n, 1, nmax}, {k, 0, n-1}] // Flatten
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Jean-François Alcover, May 05 2021
STATUS
approved