OFFSET
1,1
COMMENTS
It appears that, in general, these numbers are less than the corresponding numbers for the odd lengths, A062769.
LINKS
T. D. Noe, Table of n, a(n) for n = 1..1000
EXAMPLE
The continued fractions of sqrt(3), sqrt(7), and sqrt(19) are {1; 1, 2}, {2; 1, 1, 1, 4}, and {4; 2, 1, 3, 1, 2, 8}.
MATHEMATICA
nn = 50; t = Table[0, {nn}]; n = 1; found = 0; While[found < nn, n++; If[! IntegerQ[Sqrt[n]], c = ContinuedFraction[Sqrt[n]]; len = Length[c[[2]]]; If[EvenQ[len] && len/2 <= nn && t[[len/2]] == 0, t[[len/2]] = n; found++]]]; t
CROSSREFS
KEYWORD
nonn
AUTHOR
T. D. Noe, Apr 04 2014
STATUS
approved