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!)
A276689 Least term in the periodic part of the continued fraction expansion of sqrt(n) or 0 if n is square. 2
0, 0, 2, 1, 0, 4, 2, 1, 1, 0, 6, 3, 2, 1, 1, 1, 0, 8, 4, 1, 2, 1, 1, 1, 1, 0, 10, 5, 2, 1, 2, 1, 1, 1, 1, 1, 0, 12, 6, 4, 3, 2, 2, 1, 1, 1, 1, 1, 1, 0, 14, 7, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 0, 16, 8, 1, 4, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 0, 18, 9, 6, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
If r > 0 is even, then a((rm/2)^2+m) = r for all m >= 1 and a((r^2-2)^2/4 + (r+1)^3) = r.
If r is odd, then a((rm)^2+2m) = r for all m >= 1 and a(r^4 + r^3 + 5(r+1)^2/4) = r.
LINKS
PROG
(Python)
from sympy import continued_fraction_periodic
def A276689(n):
x = continued_fraction_periodic(0, 1, n)
return min(x[1]) if len(x) > 1 else 0
CROSSREFS
Sequence in context: A327549 A293808 A327805 * A091453 A062173 A004558
KEYWORD
nonn
AUTHOR
Chai Wah Wu, Sep 28 2016
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 April 19 13:40 EDT 2024. Contains 371792 sequences. (Running on oeis4.)