OFFSET
1,2
COMMENTS
Conjectures: Let d(n) = 3a(n) - 4n; then d(n) is bounded, and d(n) = 0 for infinitely many n.
LINKS
Clark Kimberling, Table of n, a(n) for n = 1..10000
EXAMPLE
Necessarily, a(1) = 1 and a(2) = 2. Because of these values, 5 is the least number not in the sequence, so that a(3) = 3 and a(4) = 4. Consequently, 8 and 11 are disallowed, so a(5) = 6 and a(6) = 7.
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 10 2019
STATUS
approved