The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
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
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 4 22:04 EDT 2024. Contains 373102 sequences. (Running on oeis4.)