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”).
%I #22 Jan 20 2024 11:27:47
%S 8,23,40,59,80,102,124,147,171,195,220,245,271,297,323,350,377,404,
%T 432,460,488,517,545,574,603,632,662,691,721,751,781,812,842,873,903,
%U 934,965,996,1028,1059,1091,1122,1154,1186
%N a(n) = floor(5n*log(5n)).
%H Vincenzo Librandi, <a href="/A212458/b212458.txt">Table of n, a(n) for n = 1..1000</a>
%t Table[Floor[5*n*Log[5*n]], {n, 80}] (* _Vincenzo Librandi_, Feb 13 2013 *)
%o (Derive) PROG(y := [], x := 100, LOOP(IF(x = 0, RETURN y), y := ADJOIN(FLOOR(5·x·LOG(5·x)), y), x := x - 1))
%o (Magma) [Floor(5*n*Log(5*n)): n in [1..80]]; // _Vincenzo Librandi_, Feb 13 2013
%o (PARI) a(n)=5*n*log(5*n)\1 \\ _Charles R Greathouse IV_, Sep 04 2015
%Y Cf. A050502, A050504, A212455, A212456, A212457, A212459, A212460, A212461, A212462.
%K easy,nonn
%O 1,1
%A _Mohammad K. Azarian_, May 31 2012