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”).

A076353
Numbers n such that sum(k=1,n,d(k)) is an integer, where d(k) is the decimal fraction 0.floor(sqrt(k)) (e.g. d(16)=0.4).
0
19, 24, 26, 28, 30, 32, 34, 49, 59, 67, 72, 77, 84, 94, 104, 114, 219, 226, 246, 342, 364, 455, 542, 690, 879, 903, 913, 923, 933, 943, 953, 1117, 1174, 1224, 1244, 1264, 1284, 1419, 1467, 1517, 1594, 1745, 1774, 1824, 1892, 2027, 2047, 2067, 2087, 2107, 2155
OFFSET
1,1
PROG
(PARI) s=0; for(k=1, 5000, r=sqrtint(k)/10; while(r>=1, r=r/10); s+=r; if(denominator(s)==1, print1(k, ", "))) (Klasen)
CROSSREFS
Sequence in context: A226607 A284495 A160077 * A297575 A093020 A105504
KEYWORD
base,nonn
AUTHOR
Benoit Cloitre, Aug 30 2003
EXTENSIONS
Corrected and extended by Lambert Klasen (lambert.klasen(AT)gmx.de), Jan 19 2005
STATUS
approved