OFFSET
1,2
LINKS
Kevin Ryde, Table of n, a(n) for n = 1..10011
Michael De Vlieger, Annotated fan-style heat map of a(n), n = 1..3321, showing n = k(k+1)/2..(k+1)(k+2)/2-1 in semicircular row k, where purples and blues indicate smallest values and reds and magentas largest values in the sequence.
Kevin Ryde, PARI/GP Code
MATHEMATICA
nn = 12; a[1] = 1; Do[Set[j, a[m] + a[k]]; Set[a[m (m + 1)/2 + k], j], {m, nn}, {k, m + 1}]; Array[a, # (# + 1)/2] &[nn + 1]] (* Michael De Vlieger, Aug 23 2022 *)
PROG
(PARI) See links.
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Leroy Quet, Jun 12 2006
EXTENSIONS
Extended by Ray Chandler, Jun 19 2006
STATUS
approved