OFFSET
1,2
REFERENCES
Richard K. Guy, Unsolved Problems in Number Theory, 3rd Edition, Springer, 2004, Section F21, p. 395.
EXAMPLE
For k = 4, k = 1 + 3. The only continued fraction is 1/3 = [0; 3] and 4 is a term.
For k = 5 we have k = 1 + 4 and k = 2 + 3. The continued fractions are 1/4 = [0;4] and 2/3 = [0; 1, 2]. So, 5 is not a term.
For k = 17, 5/12 = [0; 2, 2, 2]. So, 17 is not a term.
MATHEMATICA
Select[Range@570, ContainsNone[Union@*Rest@*ContinuedFraction/@Table[k/(#-k), {k, Floor[#/2]}], {{1}, {2}, {1, 2}}]&]
CROSSREFS
KEYWORD
nonn
AUTHOR
Giorgos Kalogeropoulos, Nov 29 2021
STATUS
approved