OFFSET
1,1
COMMENTS
The continued fraction expansion of sqrt((k*m)^2+t*m) for m >= 1 where t divides 2*k has the form [k*m, 2*k/t, 2*k*m, 2*k/t, 2*k*m, ...]. Thus numbers of the form (35*m)^2 + 2*m for m >= 1 are in the sequence. Are there any others? - Chai Wah Wu, Jun 18 2016
The term 1545120 is not of the form (35*m)^2 + 2*m. - Chai Wah Wu, Jun 19 2016
LINKS
Chai Wah Wu, Table of n, a(n) for n = 1..10000
PROG
(Python)
from sympy import continued_fraction_periodic
A031713_list = [n for n, d in ((n, continued_fraction_periodic(0, 1, n)[-1]) for n in range(1, 10**5)) if isinstance(d, list) and min(d) == 35] # Chai Wah Wu, Jun 10 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved