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

A325600
Positions of 1 in A325599.
5
1, 2, 3, 5, 7, 9, 10, 11, 13, 14, 16, 17, 18, 20, 21, 23, 24, 25, 27, 28, 30, 32, 34, 35, 36, 38, 39, 41, 43, 44, 45, 47, 48, 50, 52, 54, 55, 56, 58, 59, 61, 63, 64, 65, 67, 68, 70, 72, 74, 75, 76, 78, 79, 81, 83, 84, 85, 87, 88, 90, 91, 92, 94, 95, 97, 98
OFFSET
1,2
COMMENTS
All the terms of A325599 are in {1,2}, so that A325600 and A325601 are a complementary pair.
LINKS
MATHEMATICA
mex[list_, start_] := (NestWhile[# + 1 &, start, MemberQ[list, #] &]); a = {1}; Do[AppendTo[a, mex[Rest[2 a] + Most[a], Last[a] + 1]], {60}]; a (* A325597 *)
c = Complement[Range[Last[a]], a] (* A325598 *)
da = Differences[a] (* A325599 *)
Flatten[Position[da, 1]] (* A325600 *)
Flatten[Position[da, 2]] (* A325601) *)
(* Peter J. C. Moses, May 07 2019 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, May 11 2019
STATUS
approved