OFFSET
1,1
LINKS
Chai Wah Wu, Table of n, a(n) for n = 1..10000
EXAMPLE
The continued fraction for sqrt(97994) is 313, [25, 24, 25, 626], where the smallest term of the periodic part is 24, so 97994 belongs to the sequence.
MATHEMATICA
Select[Range[200000], !IntegerQ[Sqrt[#]] && Min[ContinuedFraction[Sqrt[#]][[2]]] == 24&] (* Vincenzo Librandi, Feb 06 2012 *)
PROG
(Python)
from sympy import continued_fraction_periodic
A031702_list = [n for n, s in ((i, continued_fraction_periodic(0, 1, i)[-1]) for i in range(1, 10**5)) if isinstance(s, list) and min(s) == 24] # Chai Wah Wu, Jun 08 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved