A163516 a(n) = floor( Sum_{x=2..n} x/log(x) ).
0, 2, 5, 8, 11, 14, 18, 22, 26, 30, 35, 40, 45, 50, 56, 61, 67, 74, 80, 87, 94, 101, 108, 116, 123, 131, 140, 148, 157, 165, 175, 184, 193, 203, 213, 223, 233, 243, 254, 265, 276, 287, 299, 310, 322, 334, 346, 359, 371, 384, 397, 410, 424, 437, 451, 465, 479, 493
Offset: 1
Keywords
Examples
For n = 10, floor(Sum_{x=2..n} x/log(x)) = 30, the 10th term.
Links
- G. C. Greubel, Table of n, a(n) for n = 1..1000
Programs
-
Mathematica
Table[Floor[Sum[j/Log[j], {j, 2, n}]], {n,1,50}] (* G. C. Greubel, Jul 27 2017 *) Join[{0},Floor[Accumulate[Table[x/Log[x],{x,2,60}]]]] (* Harvey P. Dale, May 22 2021 *)
-
PARI
nthsum(n) = for(j=1,n,print1(floor(sum(x=2,j,x/log(x)))","));
Formula
a(10^n) = A163521(n).
Extensions
Offset corrected, definition detailed, 7 references to other sequences added by R. J. Mathar, Aug 29 2009
Comments