OFFSET
1,1
COMMENTS
Continued fraction expansion is 9 followed by {3, 18} repeated. - Harry J. Smith, Jun 10 2009
LINKS
Harry J. Smith, Table of n, a(n) for n = 1..20000
FORMULA
EXAMPLE
9.3273790530888150455544755423205569832762406... - Harry J. Smith, Jun 10 2009
MATHEMATICA
RealDigits[N[87^(1/2), 200]][[1]] (* Vladimir Joseph Stephan Orlovsky, Jan 23 2012 *)
PROG
(Python)
from math import isqrt
def aupton(nn): return list(map(int, str(isqrt(87 * 10**(2*nn)))))[:nn]
print(aupton(100)) # Michael S. Branicky, Sep 03 2021
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
STATUS
approved