A257910 Sequence (a(n)) generated by Rule 3 (in Comments) with a(1) = 0 and d(1) = 3.
0, 1, 3, 2, 6, 4, 9, 5, 11, 8, 17, 7, 15, 10, 21, 12, 25, 13, 27, 14, 29, 18, 37, 16, 33, 19, 39, 20, 41, 23, 47, 22, 45, 28, 57, 24, 49, 26, 53, 31, 63, 32, 65, 30, 61, 34, 69, 35, 71, 42, 36, 73, 43, 87, 38, 77, 40, 81, 55, 48, 97, 44, 89, 46, 93, 51, 103
Offset: 1
Examples
a(1) = 0, d(1) = 3; a(2) = 1, d(2) = 1; a(3) = 3, d(3) = 2; a(4) = 2, d(4) = -1.
Links
- Clark Kimberling, Table of n, a(n) for n = 1..1000
Programs
-
Mathematica
{a, f} = {{0}, {3}}; 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