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

A065482
a(n) = round( 2^n/n ).
2
2, 2, 3, 4, 6, 11, 18, 32, 57, 102, 186, 341, 630, 1170, 2185, 4096, 7710, 14564, 27594, 52429, 99864, 190650, 364722, 699051, 1342177, 2581110, 4971027, 9586981, 18512790, 35791394, 69273666, 134217728, 260301048, 505290270, 981706811, 1908874354, 3714566310
OFFSET
1,1
LINKS
FORMULA
a(n) = A082894(n)/n.
a(n) = floor((2^n + floor(n/2))/n).
MATHEMATICA
Table[Floor[(Floor[n/2]+2^n)/n], {n, 1, 100}]
PROG
(PARI) { for (n=1, 300, write("b065482.txt", n, " ", round(2^n/n)) ) } \\ Harry J. Smith, Oct 20 2009
(Magma) [Round(2^n/n): n in [1..30]]; // G. C. Greubel, Jan 18 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Dec 03 2001
STATUS
approved