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

A212456
a(n) = floor(3n*log(3n)).
8
3, 10, 19, 29, 40, 52, 63, 76, 88, 102, 115, 129, 142, 156, 171, 185, 200, 215, 230, 245, 261, 276, 292, 307, 323, 339, 355, 372, 388, 404, 421, 438, 454, 471, 488, 505, 522, 539, 557, 574, 591, 609, 626, 644, 662, 679
OFFSET
1,1
LINKS
MATHEMATICA
Table[Floor[3*n*Log[3*n]], {n, 60}] (* Vincenzo Librandi, Feb 13 2013 *)
PROG
(Derive) PROG(y := [], x := 100, LOOP(IF(x = 0, RETURN y), y := ADJOIN(FLOOR(3·x·LOG(3·x)), y), x := x - 1))
(Magma) [Floor(3*n*Log(3*n)): n in [1..80]]; // Vincenzo Librandi, Feb 13 2013
(PARI) a(n)=3*n*log(3*n)\1 \\ Charles R Greathouse IV, Sep 04 2015
KEYWORD
easy,nonn
AUTHOR
Mohammad K. Azarian, May 31 2012
STATUS
approved