A061567 a(n) = floor(n^log(n)).
1, 1, 3, 6, 13, 24, 44, 75, 124, 200, 314, 480, 719, 1058, 1530, 2180, 3062, 4248, 5823, 7898, 10605, 14108, 18607, 24343, 31607, 40749, 52184, 66408, 84009, 105677, 132226, 164608, 203936, 251505, 308815, 377606, 459883, 557954, 674470, 812467
Offset: 1
Links
- Harry J. Smith, Table of n, a(n) for n = 1..500
Programs
-
Mathematica
Array[Floor[#^Log[#]] &, 40] (* Michael De Vlieger, Dec 11 2017 *)
-
PARI
{ default(realprecision, 100); for (n=1, 500, write("b061567.txt", n, " ", floor(n^log(n))) ) } \\ Harry J. Smith, Jul 24 2009
Comments