login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A082894 a(n) is the closest number to 2^n which is divisible by n. 8
2, 4, 9, 16, 30, 66, 126, 256, 513, 1020, 2046, 4092, 8190, 16380, 32775, 65536, 131070, 262152, 524286, 1048580, 2097144, 4194300, 8388606, 16777224, 33554425, 67108860, 134217729, 268435468, 536870910, 1073741820, 2147483646 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = n*floor( (floor(n/2)+2^n) / n ).
EXAMPLE
n=11: 2^11=2048 is between 2046=11.186 and 2035=11.185, closer to a(11)=2046;
Powers of two are fixed points of this map.
MAPLE
A082894:=n->n*floor((floor(n/2)+2^n)/n); seq(A082894(k), k=1..100); # Wesley Ivan Hurt, Oct 29 2013
MATHEMATICA
Table[n*Floor[(Floor[n/2]+2^n)/n], {n, 100}]
PROG
(PARI) for(n=1, 50, print1(n*floor( (floor(n/2)+2^n) / n ), ", ")) \\ G. C. Greubel, Aug 08 2017
CROSSREFS
Sequence in context: A174511 A034452 A034449 * A302831 A091437 A131337
KEYWORD
nonn
AUTHOR
Labos Elemer, Apr 22 2003
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 23:26 EDT 2024. Contains 371917 sequences. (Running on oeis4.)