login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A010172 Continued fraction for sqrt(106). 3
10, 3, 2, 1, 1, 1, 1, 2, 3, 20, 3, 2, 1, 1, 1, 1, 2, 3, 20, 3, 2, 1, 1, 1, 1, 2, 3, 20, 3, 2, 1, 1, 1, 1, 2, 3, 20, 3, 2, 1, 1, 1, 1, 2, 3, 20, 3, 2, 1, 1, 1, 1, 2, 3, 20, 3, 2, 1, 1, 1, 1, 2, 3, 20, 3, 2, 1, 1, 1, 1, 2, 3, 20, 3, 2, 1, 1, 1, 1, 2, 3, 20, 3, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
G. Xiao, Contfrac
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
Sequence in context: A159005 A144859 A280519 * A224365 A087869 A167764
KEYWORD
nonn,cofr
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified March 28 18:04 EDT 2024. Contains 371254 sequences. (Running on oeis4.)