[go: up one dir, main page]

login
Monotonic ordering of set S generated by these rules: if x and y are in S then x^2+y^2-floor(xy/2) is in S, and 1 is in S.
2

%I #4 Mar 30 2012 18:57:35

%S 1,2,4,6,15,16,24,34,40,54,211,214,216,219,240,244,249,338,361,384,

%T 540,544,556,565,621,640,864,1090,1104,1126,1140,1324,1516,1525,1536,

%U 1564,1581,1696,1734,2076,2400,2736,2740,2790,2824,2844,2866,2890,3154

%N Monotonic ordering of set S generated by these rules: if x and y are in S then x^2+y^2-floor(xy/2) is in S, and 1 is in S.

%C See A192476.

%t start = {1}; f[x_, y_] := x^2 + y^2 - Floor[x*y/2]

%t b[x_] :=

%t Block[{w = x},

%t Select[Union[

%t Flatten[AppendTo[w,

%t Table[f[w[[i]], w[[j]]], {i, 1, Length[w]}, {j, 1, i}]]]], # <

%t 20000 &]];

%t t = FixedPoint[b, start] (* A192536 *)

%Y Cf. A192476.

%K nonn

%O 1,2

%A _Clark Kimberling_, Jul 04 2011