OFFSET
1,1
COMMENTS
Continued fraction expansion is 9 followed by {2, 3, 3, 2, 18} repeated. - Harry J. Smith, Jun 10 2009
LINKS
Harry J. Smith, Table of n, a(n) for n = 1..20000
EXAMPLE
9.433981132056603811320660377622640716983622633415121320662981448980022... - Harry J. Smith, Jun 10 2009
MATHEMATICA
RealDigits[Sqrt[89], 10, 120][[1]] (* Harvey P. Dale, Nov 20 2011 *)
PROG
(PARI) { default(realprecision, 20080); x=sqrt(89); for (n=1, 20000, d=floor(x); x=(x-d)*10; write("b010540.txt", n, " ", d)); } \\ Harry J. Smith, Jun 10 2009
(Python)
from math import isqrt
def aupton(nn): return list(map(int, str(isqrt(89 * 10**(2*nn)))))[:nn]
print(aupton(100)) # Michael S. Branicky, Sep 04 2021
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
STATUS
approved