OFFSET
1,2
LINKS
Alois P. Heinz, Table of n, a(n) for n = 1..10000
Sandor Csörgö, Gordon Simons, On Steinhaus' resolution of the St. Petersburg paradox, Probab. Math. Statist. 14 (1993), 157--172. MR1321758 (96b:60017). See Table 1 p. 171.
MAPLE
a:= n-> floor(n*log[2](n)):
seq(a(n), n=1..80); # Alois P. Heinz, Oct 17 2019
MATHEMATICA
Table[Floor[n Log2[n]], {n, 80}] (* Harvey P. Dale, Nov 29 2022 *)
PROG
(PARI) a(n) = n*log(n)\log(2);
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Marcus, Oct 17 2019
STATUS
approved