login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A027663
a(n)/100000 gives sqrt(n) to 5 places after the decimal point.
2
100000, 141421, 173205, 200000, 223607, 244949, 264575, 282843, 300000, 316228, 331662, 346410, 360555, 374166, 387298, 400000, 412311, 424264, 435890, 447214, 458258, 469042, 479583, 489898, 500000, 509902, 519615, 529150, 538516, 547723, 556776, 565685, 574456
OFFSET
1,1
MAPLE
lprint(round(evalf(100000*sqrt(n))));
MATHEMATICA
Table[Floor[FromDigits[RealDigits[Sqrt[n], 10, 7][[1]]]/10+1/2], {n, 30}] (* Harvey P. Dale, Jan 31 2012 *)
PROG
(Python)
from math import isqrt
def A027663(n): return (m:=isqrt(k:=n*10**10))+int((k-m*(m+1)<<2)>=1) # Chai Wah Wu, Jul 30 2022
CROSSREFS
Sequence in context: A204523 A182698 A033427 * A168652 A277399 A017177
KEYWORD
nonn,base
STATUS
approved