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!)
A204330 a(n) is the number of k satisfying 1 <= k <= n and such that floor(sqrt(k)) divides k. 0
1, 2, 3, 4, 4, 5, 5, 6, 7, 7, 7, 8, 8, 8, 9, 10, 10, 10, 10, 11, 11, 11, 11, 12, 13, 13, 13, 13, 13, 14, 14, 14, 14, 14, 15, 16, 16, 16, 16, 16, 16, 17, 17, 17, 17, 17, 17, 18, 19, 19, 19, 19, 19, 19, 19, 20, 20, 20, 20, 20, 20, 20, 21, 22, 22, 22, 22, 22, 22, 22 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
a(n) = floor(2*sqrt(n)) + floor(sqrt(n-1)) - 1 if n belongs to A135106 otherwise a(n) = floor(2*sqrt(n)) + floor(sqrt(n-1)) - 2.
LINKS
FORMULA
a(n) = card{j>=1, A006446(j)<=n}.
MATHEMATICA
Accumulate[Boole[Table[IntegerQ[n/Floor[n^(1/2)]], {n, 1, 70}]]] (* Geoffrey Critzer, May 25 2013 *)
PROG
(PARI) a(n)=sum(k=1, n, if(k%sqrtint(k), 0, 1));
CROSSREFS
Sequence in context: A050292 A181627 A071521 * A225553 A039733 A179510
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Jan 14 2012
EXTENSIONS
Corrected by Geoffrey Critzer, May 25 2013
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 16:45 EDT 2024. Contains 371989 sequences. (Running on oeis4.)