A212293 Integer part of n*log(n)^2.
0, 0, 3, 7, 12, 19, 26, 34, 43, 53, 63, 74, 85, 97, 110, 122, 136, 150, 164, 179, 194, 210, 226, 242, 259, 275, 293, 310, 328, 347, 365, 384, 403, 422, 442, 462, 482, 502, 523, 544, 565, 586, 608, 630, 652, 674, 696, 719, 742, 765, 788, 811, 835, 859, 883, 907, 931, 956
Offset: 1
Links
- Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
Crossrefs
Cf. A050504.
Programs
-
Mathematica
Table[Floor[n Log[n]^2],{n,60}] (* Harvey P. Dale, Oct 24 2018 *)
-
PARI
a(n)=n*log(n)^2\1
Formula
a(n) = floor(n*log(n)^2).