OFFSET
1,1
COMMENTS
Continued fraction expansion is 8 followed by {1, 3, 2, 3, 1, 16} repeated. - Harry J. Smith, Jun 09 2009
LINKS
Harry J. Smith, Table of n, a(n) for n = 1..20000
EXAMPLE
8.774964387392122060406388307416309560875876827554503590927695629782764... - Harry J. Smith, Jun 09 2009
MATHEMATICA
RealDigits[N[77^(1/2), 200]][[1]] (* Vladimir Joseph Stephan Orlovsky, Jan 23 2012 *)
PROG
(PARI) { default(realprecision, 20080); x=sqrt(77); for (n=1, 20000, d=floor(x); x=(x-d)*10; write("b010529.txt", n, " ", d)); } \\ Harry J. Smith, Jun 09 2009
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
STATUS
approved