A010538 Decimal expansion of square root of 87.
9, 3, 2, 7, 3, 7, 9, 0, 5, 3, 0, 8, 8, 8, 1, 5, 0, 4, 5, 5, 5, 4, 4, 7, 5, 5, 4, 2, 3, 2, 0, 5, 5, 6, 9, 8, 3, 2, 7, 6, 2, 4, 0, 6, 9, 4, 1, 9, 1, 6, 5, 4, 6, 7, 1, 0, 5, 6, 1, 9, 7, 2, 9, 8, 4, 4, 6, 7, 8, 4, 5, 4, 8, 8, 0, 7, 2, 4, 9, 6, 7, 8, 4, 1, 4, 2, 2, 0, 5, 6, 2, 9, 1, 1, 8, 8, 2, 0, 1
Offset: 1
Examples
9.3273790530888150455544755423205569832762406...
Links
Programs
-
Mathematica
RealDigits[N[87^(1/2),200]][[1]] (* Vladimir Joseph Stephan Orlovsky, Jan 23 2012 *)
-
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
Comments