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!)
A023961 First digit after decimal point of square root of n. 18
0, 4, 7, 0, 2, 4, 6, 8, 0, 1, 3, 4, 6, 7, 8, 0, 1, 2, 3, 4, 5, 6, 7, 8, 0, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 0, 1, 2, 3, 4, 4, 5, 6, 7, 7, 8, 9, 0, 0, 1, 2, 2, 3, 4, 4, 5, 6, 6, 7, 8, 8, 9, 0, 0, 1, 1, 2, 3, 3, 4, 4, 5, 6, 6, 7, 7, 8, 8, 9, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 0, 0, 0, 1, 1, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
When n is a square, a(n) is equal to 0, but the converse is not true, see A034096. - Michel Marcus, Sep 21 2015
LINKS
FORMULA
a(n) = A010879(A000196(100*n)). - Robert Israel, Jul 30 2015
EXAMPLE
sqrt(1) = 1.00000000... hence a(1) = 0.
sqrt(2) = 1.41421356... hence a(2) = 4.
sqrt(3) = 1.73205080... hence a(3) = 7.
sqrt(4) = 2.00000000... hence a(4) = 0.
Note that 26 = 2 * 13 and sqrt(26) = 5.09901951... so a(26) = 0 even though 26 is not a perfect square.
MAPLE
A023961 := proc(n) return floor(10*sqrt(n)) mod 10: end: seq(A023961(n), n=1..100); # Nathaniel Johnston, May 04 2011
MATHEMATICA
Array[Function[n, RealDigits[N[Power[n, 1/2], 10], 10] // (#[[1, #[[2]] + 1]]) &], 110]
fd[n_] := Module[{rd = RealDigits[Sqrt[n], 10, 10]}, First[rd][[Last[rd] + 1]]]; Array[fd, 90] (* Harvey P. Dale, Jan 16 2014 *)
PROG
(PARI) a(n) = floor(10*sqrt(n)) % 10; \\ Michel Marcus, Sep 21 2015
CROSSREFS
Sequence in context: A069179 A336764 A058377 * A147863 A358662 A019976
KEYWORD
nonn,easy,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 April 29 12:47 EDT 2024. Contains 372114 sequences. (Running on oeis4.)