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

A180124
Third of three "least, sum, least" self-generating sequences.
3
3, 5, 8, 11, 14, 16, 19, 22, 24, 27, 30, 33, 35, 38, 41, 44, 46, 49, 52, 55, 57, 60, 63, 65, 68, 71, 74, 76, 79, 82, 85, 87, 90, 93, 95, 98, 101, 104, 106, 109, 112, 115, 117, 120, 123, 126, 128, 131, 134, 136, 139, 142, 145, 147, 150, 153, 156, 158, 161, 164, 167
OFFSET
1,1
LINKS
FORMULA
a(n) = least positive integer not yet used;
b(n) = n + a(n);
c(n) = least positive integer not yet used.
EXAMPLE
The three sequences, labeled a,b,c, are
a=(1,4,7,9,...), b=(2,6,10,13,...), c=(3,5,8,11...).
MATHEMATICA
mex[list_, offset_]:=NestWhile[#+1&, offset, MemberQ[list, #]&];
z=100; a[1]=1; b[1]=1+a[1];
c[1]=mex[soFar={a[1], b[1]}, 1];
Do[soFar=Join[soFar, {c[n-1]}];
a[n]=mex[soFar, c[n-1]];
b[n]=n+a[n]; soFar=Join[soFar, {a[n], b[n]}];
c[n]=mex[soFar, a[n]], {n, 2, z}]
Map[a, Range[z]](*A180122*)
Map[b, Range[z]](*A180123*)
Map[c, Range[z]](*A180124*)
(* Peter J. C. Moses, Aug 22 2014 *)
A180122 = Map[Floor[(1 + Sqrt[3]) #] - 1 &, Range[200]]
A180123 = A180122 + Range[200]
A180124 = Complement[Range[Last[A180122]], Flatten[{A180122, A180123}]]
(* Peter J. C. Moses, Aug 23 2014 *)
CROSSREFS
Sequence in context: A079392 A185723 A022852 * A095375 A345979 A129260
KEYWORD
nonn
AUTHOR
Clark Kimberling, Aug 11 2010
STATUS
approved