OFFSET
1,2
COMMENTS
If n=1 then the term is the first digit before the decimal point. If the square root of n is a whole number then the term is 0.
EXAMPLE
If n=2, sqrt(2)=1.41421356..., the 1st (2-1) decimal place of which is 4 so the 2nd term is 4.
If n=3, sqrt(3)=1.73205080..., the 2nd (3-1) decimal place of which is 3 so the 3rd term is 3.
MATHEMATICA
Join[{0}, Table[RealDigits[Sqrt[n] - Floor[Sqrt[n]], 10, n, -1][[1, -2]], {n, 2, 87}]]
PROG
(Python)
from math import isqrt
def a(n):
if n<2: return 0
return isqrt(n*100**(n-1))%10
print([a(n) for n in range(1, 88)]) # Jason Yuen, Jan 10 2026
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Ruskin Harding, Jan 04 2013
STATUS
approved
