A010542 Decimal expansion of square root of 91.
9, 5, 3, 9, 3, 9, 2, 0, 1, 4, 1, 6, 9, 4, 5, 6, 4, 9, 1, 5, 2, 6, 2, 1, 5, 8, 6, 0, 2, 3, 2, 2, 6, 5, 4, 0, 2, 5, 4, 6, 2, 3, 4, 2, 5, 2, 5, 0, 5, 4, 5, 7, 5, 3, 9, 0, 8, 1, 5, 1, 8, 5, 2, 9, 1, 0, 3, 6, 2, 5, 5, 2, 3, 0, 5, 6, 5, 0, 7, 2, 1, 8, 2, 7, 7, 8, 2, 1, 7, 6, 4, 4, 9, 1, 2, 2, 0, 6, 9
Offset: 1
Examples
9.53939201416945649152621586023226540254623...
Links
Crossrefs
Cf. A010162 (continued fraction).
Programs
-
Mathematica
RealDigits[N[Sqrt[91],200]][[1]] (* Vladimir Joseph Stephan Orlovsky, Feb 04 2012 *)
-
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
Comments