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

A065613
a(n) = floor(log(n)*2^n/n).
2
0, 1, 2, 5, 10, 19, 35, 66, 124, 235, 446, 848, 1616, 3088, 5915, 11356, 21844, 42094, 81249, 157062, 304039, 589307, 1143583, 2221620, 4320301, 8409506, 16383693, 31945779, 62338040, 121733596, 237884882, 465163198, 910144583
OFFSET
1,3
LINKS
MATHEMATICA
Table[Floor[(Log[n]2^n)/n], {n, 40}] (* Harvey P. Dale, Feb 07 2015 *)
PROG
(PARI) { default(realprecision, 100); for (n=1, 200, write("b065613.txt", n, " ", floor( log(n)*2^n/n )) ) } \\ Harry J. Smith, Oct 24 2009
CROSSREFS
Sequence in context: A304792 A104161 A288579 * A249557 A061705 A052944
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Dec 03 2001
EXTENSIONS
Offset changed from 0 to 1 by Harry J. Smith, Oct 24 2009
STATUS
approved