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

A235707
Floor(n^2 * log(n)).
1
0, 2, 9, 22, 40, 64, 95, 133, 177, 230, 290, 357, 433, 517, 609, 709, 818, 936, 1062, 1198, 1342, 1496, 1658, 1830, 2011, 2202, 2402, 2612, 2831, 3061, 3300, 3548, 3807, 4076, 4355, 4644, 4943, 5252, 5572, 5902, 6242, 6593, 6954, 7326, 7708, 8101, 8504, 8919
OFFSET
1,2
LINKS
MATHEMATICA
Table[Floor[n^2 Log[n]], {n, 1, 50}] (* Vincenzo Librandi, Apr 22 2014 *)
PROG
(Python)
import math
for n in range(1, 100): print str(int(n*n*math.log(n)))+', ',
(Magma) [Floor(n^2 * Log(n)): n in [1..50]]; // Vincenzo Librandi, Apr 22 2014
CROSSREFS
Cf. A050504.
Sequence in context: A377793 A284923 A343850 * A056105 A323891 A212069
KEYWORD
nonn,easy
AUTHOR
Alex Ratushnyak, Apr 20 2014
STATUS
approved