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!)
A231560 Floor(sum_{i=2..n} 1/(i*log(i))). 0
0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,27
COMMENTS
Compare with sum_{i=1..n} 1/prime(n).
This sequence also appears to diverge, with a(n) >= 3 for n >= 8718.
LINKS
MATHEMATICA
s = 0; Table[Floor[s = s + 1/(n*Log[n])], {n, 2, 88}] (* T. D. Noe, Nov 15 2013 *)
PROG
(JavaScript)
s=0;
for (i=2; i<600; i++) {
s+=1/(i*Math.log(i));
document.write(Math.floor(s)+", ");
}
CROSSREFS
Cf. A000040 (the primes).
Sequence in context: A000520 A044930 A032545 * A113679 A262438 A044931
KEYWORD
nonn
AUTHOR
Jon Perry, Nov 11 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 19 14:50 EDT 2024. Contains 371792 sequences. (Running on oeis4.)