A297469 Solution (bb(n)) of the system of 3 complementary equations in Comments.
2, 7, 11, 17, 22, 27, 31, 37, 41, 47, 51, 57, 62, 67, 71, 77, 82, 87, 91, 97, 102, 107, 111, 117, 121, 127, 131, 137, 142, 147, 151, 157, 161, 167, 171, 177, 182, 187, 191, 197, 201, 207, 211, 217, 222, 227, 231, 237, 242, 247, 251, 257, 262, 267, 271, 277
Offset: 0
Examples
n: 0 1 2 3 4 5 6 7 8 9 10 aa: 1 4 6 9 12 14 16 19 21 24 26 bb: 2 7 11 17 22 27 31 37 41 47 51 cc: 3 5 8 10 13 15 18 20 23 25 28
Links
- Clark Kimberling, Table of n, a(n) for n = 0..10000 [This is the sequence bb]
Programs
-
Mathematica
z = 500; mex[list_, start_] := (NestWhile[# + 1 &, start, MemberQ[list, #] &]); a = {1}; b = {2}; c = {3}; Do[AppendTo[a, mex[Flatten[{a, b, c}], Last[a]]]; AppendTo[b, Last[a] + Last[c]]; AppendTo[c, mex[Flatten[{a, b, c}], Last[a]]], {z}]; Take[a, 100] (* A298468 *) Take[b, 100] (* A297469 *) Take[c, 100] (* A047218 *) (* Peter J. C. Moses, Apr 23 2018 *)
Extensions
Changed a,b,c to aa,bb,cc to avoid confusion caused by conflict with standard OEIS terminology. - N. J. A. Sloane, Nov 03 2019
Comments