A257983 Sequence (a(n)) generated by Rule 3 (in Comments) with a(1) = 1 and d(1) = 2.
1, 2, 5, 3, 7, 4, 9, 8, 16, 6, 12, 24, 10, 20, 11, 22, 14, 28, 13, 26, 15, 30, 17, 34, 18, 36, 19, 38, 31, 25, 21, 42, 23, 46, 41, 29, 58, 27, 54, 32, 64, 35, 70, 33, 66, 39, 78, 37, 74, 40, 80, 44, 88, 43, 86, 47, 94, 45, 90, 48, 96, 49, 98, 50, 100, 56
Offset: 1
Examples
a(1) = 1, d(1) = 2; a(2) = 2, d(2) = 1; a(3) = 5, d(3) = 3; a(4) = 3, d(4) = -2.
Links
- Clark Kimberling, Table of n, a(n) for n = 1..1000
Programs
-
Mathematica
{a, f} = {{1}, {2}}; Do[tmp = {#, # - Last[a]} &[Min[Complement[#, Intersection[a, #]]&[Last[a] + Complement[#, Intersection[f, #]] &[Range[2 - Last[a], -1]]]]]; If[! IntegerQ[tmp[[1]]], tmp = {Last[a] + #, #} &[NestWhile[# + 1 &, 1, ! (! MemberQ[f, #] && ! MemberQ[a, Last[a] - #]) &]]]; AppendTo[a, tmp[[1]]]; AppendTo[f, tmp[[2]]], {120}]; {a, f} (* Peter J. C. Moses, May 14 2015 *)
Comments