login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A271584
Irregular triangle read by rows: alternate (k-1)*k, k^2, for k = 0 to n.
1
0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 1, 4, 0, 0, 2, 6, 0, 1, 4, 9, 0, 0, 2, 6, 12, 0, 1, 4, 9, 16, 0, 0, 2, 6, 12, 20, 0, 1, 4, 9, 16, 25, 0, 0, 2, 6, 12, 20, 30, 0, 1, 4, 9, 16, 25, 36, 0, 0, 2, 6, 12, 20, 30, 42, 0, 1, 4, 9, 16, 25, 36, 49
OFFSET
0,9
COMMENTS
This is the irregular triangle e(n) mentioned in A269837.
Last number: 0, 0, 0, 1, 2, 4, 6, 9, 12, 16, 20, 25, ... = A002620 with a third initial 0.
Row sums: 0, 0, 0, 1, 2, 5, 8, 14, 20, 30, 40, ... = A006918 with three initial 0.
Columns: the sum of the first two terms is A000384(n).
EXAMPLE
Irregular triangle:
0,
0,
0, 0,
0, 1,
0, 0, 2,
0, 1, 4,
0, 0, 2, 6,
0, 1, 4, 9,
0, 0, 2, 6, 12,
0, 1, 4, 9, 16,
0, 0, 2, 6, 12, 20,
0, 1, 4, 9, 16, 25,
etc.
MATHEMATICA
Flatten[Transpose /@ Table[{k (k - 1), k^2}, {n, 0, 7}, {k, 0, n}]] (* Michael De Vlieger, Apr 10 2016 *)
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Paul Curtz, Apr 10 2016
STATUS
approved