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!)
A010536 Decimal expansion of square root of 85. 7
9, 2, 1, 9, 5, 4, 4, 4, 5, 7, 2, 9, 2, 8, 8, 7, 3, 1, 0, 0, 0, 2, 2, 7, 4, 2, 8, 1, 7, 6, 2, 7, 9, 3, 1, 5, 7, 2, 4, 6, 8, 0, 5, 0, 4, 8, 7, 2, 2, 4, 6, 4, 0, 0, 8, 0, 0, 7, 7, 5, 2, 2, 0, 5, 4, 4, 2, 6, 7, 1, 0, 2, 6, 8, 0, 1, 8, 7, 5, 4, 6, 0, 7, 6, 7, 8, 9, 4, 0, 9, 0, 7, 9, 3, 2, 8, 0, 5, 6 (list; constant; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Continued fraction expansion is 9 followed by {4, 1, 1, 4, 18} repeated. - Harry J. Smith, Jun 10 2009
LINKS
EXAMPLE
9.219544457292887310002274281762793157246805048722464008007752205442671....
MATHEMATICA
RealDigits[N[85^(1/2), 200]][[1]] (* Vladimir Joseph Stephan Orlovsky, Jan 23 2012 *)
PROG
(PARI) default(realprecision, 20080); x=sqrt(85); for (n=1, 20000, d=floor(x); x=(x-d)*10; write("b010536.txt", n, " ", d)); \\ Harry J. Smith, Jun 10 2009
(Python)
from math import isqrt
def aupton(nn): return list(map(int, str(isqrt(85 * 10**(2*nn)))))[:nn]
print(aupton(100)) # Michael S. Branicky, Sep 02 2021
CROSSREFS
Cf. A010158 (continued fraction). - Harry J. Smith, Jun 10 2009
Sequence in context: A197488 A197757 A293258 * A239908 A293171 A334689
KEYWORD
nonn,cons
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 April 25 13:12 EDT 2024. Contains 371969 sequences. (Running on oeis4.)