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”).

A125568
a(0)=1. For n>=1, n-th run consists of the integers (in ascending order) of n through a(n-1)+n-1.
0
1, 1, 2, 3, 4, 4, 5, 6, 5, 6, 7, 8, 6, 7, 8, 9, 7, 8, 9, 10, 11, 8, 9, 10, 11, 12, 13, 9, 10, 11, 12, 13, 10, 11, 12, 13, 14, 15, 11, 12, 13, 14, 15, 16, 17, 12, 13, 14, 15, 16, 17, 18, 19, 13, 14, 15, 16, 17, 18, 14, 15, 16, 17, 18, 19, 20, 15, 16, 17, 18, 19, 20, 21, 22, 16, 17, 18
OFFSET
0,3
EXAMPLE
The sequence grouped by (ascending) runs, where the n-th run, for n>=1, consists of a(n-1) integers: 1, (1), (2), (3, 4), (4, 5, 6), (5, 6, 7, 8), (6, 7, 8, 9), (7, 8, 9, 10, 11), (8, 9, 10, 11, 12, 13), (9, 10, 11, 12, 13), ...
MATHEMATICA
f[l_List] := Block[{n = Length[l]}, Append[l, Range[n, Flatten[l][[n]] + n - 1]]]; Flatten@Nest[f, {{1}}, 16] (* Ray Chandler, Jan 05 2007 *)
CROSSREFS
Sequence in context: A058222 A064064 A101504 * A248110 A108872 A147847
KEYWORD
easy,nonn
AUTHOR
Leroy Quet, Jan 01 2007
EXTENSIONS
Extended by Ray Chandler, Jan 05 2007
STATUS
approved