OFFSET
1,2
COMMENTS
This sequence is a permutation of the positive integers.
LINKS
Ivan Neretin, Table of n, a(n) for n = 1..10000
MATHEMATICA
a = {1, 2}; For[n = 3, n < 60, n++, i = 3; While[Length[Intersection[{i}, a]] == 1 || Floor[i/a[[ -1]]] == Floor[a[[ -1]]/a[[ -2]]], i++ ]; AppendTo[a, i]]; a (* Stefan Steinerberger, Oct 16 2007 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Leroy Quet, Apr 06 2007
EXTENSIONS
More terms from Stefan Steinerberger, Oct 16 2007
STATUS
approved