OFFSET
0,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..999
G. Xiao, Contfrac
Index entries for linear recurrences with constant coefficients, signature (0, 0, 0, 0, 0, 0, 0, 0, 1).
MATHEMATICA
ContinuedFraction[Sqrt[106], 300] (* Vladimir Joseph Stephan Orlovsky, Mar 11 2011 *)
PadRight[{10}, 120, {20, 3, 2, 1, 1, 1, 1, 2, 3}] (* Harvey P. Dale, Aug 19 2021 *)
PROG
(Python)
from sympy import sqrt
from sympy.ntheory.continued_fraction import continued_fraction_iterator
def aupton(terms):
gen = continued_fraction_iterator(sqrt(106))
return [next(gen) for i in range(terms)]
print(aupton(82)) # Michael S. Branicky, Oct 03 2021
CROSSREFS
KEYWORD
nonn,cofr
AUTHOR
STATUS
approved