OFFSET
1,2
LINKS
Ivan Neretin, Table of n, a(n) for n = 1..5050
EXAMPLE
Triangle starts:
1;
2, 4;
3, 6, 9;
7, 11, 15, 19;
8, 13, 18, 23, 28;
14, 20, 26, 32, 38, 44;
22, 29, 36, 43, 50, 57, 64;
...
MATHEMATICA
a = {1}; Do[d = Range[0, n - 1]*n; a = Join[a, Min[Complement[Range[Max@a + 1], Flatten@Outer[Plus, a, -d]]] + d], {n, 2, 12}]; a (* Ivan Neretin, Nov 09 2016 *)
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Amarnath Murthy, Oct 01 2002
EXTENSIONS
More terms from David Wasserman, Jan 22 2005
STATUS
approved