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

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