[go: up one dir, main page]

login
A192536
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
1, 2, 4, 6, 15, 16, 24, 34, 40, 54, 211, 214, 216, 219, 240, 244, 249, 338, 361, 384, 540, 544, 556, 565, 621, 640, 864, 1090, 1104, 1126, 1140, 1324, 1516, 1525, 1536, 1564, 1581, 1696, 1734, 2076, 2400, 2736, 2740, 2790, 2824, 2844, 2866, 2890, 3154
OFFSET
1,2
COMMENTS
See A192476.
MATHEMATICA
start = {1}; f[x_, y_] := x^2 + y^2 - Floor[x*y/2]
b[x_] :=
Block[{w = x},
Select[Union[
Flatten[AppendTo[w,
Table[f[w[[i]], w[[j]]], {i, 1, Length[w]}, {j, 1, i}]]]], # <
20000 &]];
t = FixedPoint[b, start] (* A192536 *)
CROSSREFS
Cf. A192476.
Sequence in context: A039791 A275664 A349979 * A227902 A217525 A295615
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jul 04 2011
STATUS
approved