OFFSET
1,1
COMMENTS
Continued fraction expansion is 9 followed by {18} repeated. - Harry J. Smith, Jun 10 2009
LINKS
Harry J. Smith, Table of n, a(n) for n = 1..20000
EXAMPLE
9.055385138137416626573808166984066413052124464096940276581741230018657... - Harry J. Smith, Jun 10 2009
MATHEMATICA
RealDigits[N[82^(1/2), 200]][[1]] (* Vladimir Joseph Stephan Orlovsky, Jan 23 2012 *)
RealDigits[Sqrt[82], 10, 120][[1]] (* Harvey P. Dale, May 20 2023 *)
PROG
(PARI) { default(realprecision, 20080); x=sqrt(82); for (n=1, 20000, d=floor(x); x=(x-d)*10; write("b010533.txt", n, " ", d)); } \\ Harry J. Smith, Jun 10 2009
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
STATUS
approved