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!)
A034107 Fractional part of square root of a(n) starts with 1: first term of runs. 1
10, 17, 27, 38, 51, 66, 83, 103, 124, 147, 172, 199, 229, 260, 293, 328, 365, 405, 446, 489, 534, 581, 631, 682, 735, 790, 847, 907, 968, 1031, 1096, 1163, 1233, 1304, 1377, 1452, 1529, 1609, 1690, 1773, 1858, 1945, 2035, 2126, 2219, 2314, 2411, 2511, 2612 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
PROG
(Python)
from math import sqrt
def a(n):
k = (n + 2)**2
while int(10*sqrt(k))%10 != 1: k += 1
return k
print([a(n) for n in range(1, 50)]) # Michael S. Branicky, Oct 17 2021
CROSSREFS
Cf. A034097.
Sequence in context: A188302 A190771 A034097 * A364823 A019991 A164285
KEYWORD
nonn,base
AUTHOR
Patrick De Geest, Sep 15 1998
EXTENSIONS
Offset 1 from Alois P. Heinz, Aug 05 2020
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 25 12:15 EDT 2024. Contains 371969 sequences. (Running on oeis4.)