OFFSET
1,2
COMMENTS
Note that the last term of the n-th row is A100104(n).
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
EXAMPLE
Triangle begins:
1;
2, 5;
3, 11, 19;
4, 19, 34, 49;
5, 29, 53, 77, 101;
6, 41, 76, 111, 146, 181;
MATHEMATICA
Table[NestList[#+n^2-1&, n, n-1], {n, 11}]//Flatten (* Harvey P. Dale, Feb 24 2016 *)
CROSSREFS
KEYWORD
AUTHOR
Omar E. Pol, Jul 09 2009
EXTENSIONS
More terms from Vincenzo Librandi, Aug 02 2010
STATUS
approved