OFFSET
1,1
COMMENTS
Continued fraction expansion is 9 followed by {2, 18} repeated. - Harry J. Smith, Jun 11 2009
LINKS
Harry J. Smith, Table of n, a(n) for n = 1..20000
EXAMPLE
9.486832980505137995996680633298155601158665417975650480572514558377783... - Harry J. Smith, Jun 11 2009
MATHEMATICA
RealDigits[N[90^(1/2), 200]][[1]] (* Vladimir Joseph Stephan Orlovsky, Jan 23 2012 *)
PROG
(PARI) { default(realprecision, 20080); x=sqrt(90); for (n=1, 20000, d=floor(x); x=(x-d)*10; write("b010541.txt", n, " ", d)); } \\ Harry J. Smith, Jun 11 2009
(Python)
from math import isqrt
def aupton(nn): return list(map(int, str(isqrt(90 * 10**(2*nn)))))[:nn]
print(aupton(100)) # Michael S. Branicky, Sep 04 2021
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
STATUS
approved