%I #12 Sep 19 2017 21:37:32
%S 1,3,5,9,13,19,25,32,40,50,60,71,83,97,111,126,142,159,177,197,217,
%T 238,260,283,307,333,359,386,414,443,473,504,537,570,604,639,675,712,
%U 750,789,830,871,913,956,1000,1045,1091,1138,1186,1235,1286,1337,1389,1442
%N a(0)=1. a(n) = a(n-1) + (smallest integer which is >= n and is missing from the earlier terms of the sequence).
%H Michael De Vlieger, <a href="/A118028/b118028.txt">Table of n, a(n) for n = 0..1000</a>
%t a = {1}; Do[k = 2; While[Nand[FreeQ[a, k], k >= i], k++]; AppendTo[a, a[[i]] + k], {i, 53}]; a (* _Michael De Vlieger_, Sep 19 2017 *)
%Y Cf. A118026, A118027, A118029, A118030, A094589.
%K easy,nonn
%O 0,2
%A _Leroy Quet_, Apr 10 2006
%E More terms from _Joshua Zucker_, Jul 27 2006