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