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!)
A118016 Integers of the form 2^n/(n-1). 0
4, 4, 8, 64, 8192, 268435456, 576460752303423488, 5316911983139663491615228241121378304, 904625697166532776746648320380374280103671755200316906558262375061821325312 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,1
LINKS
FORMULA
a(n) = 4*A016031(n). - Paolo P. Lava, Nov 10 2006
EXAMPLE
n=5: 2^5/(5-1) = 32/4 = 8.
n=17: 2^17/(17-1) = 131072/16 = 8192.
MAPLE
P:=proc(n) local i, j; for i from 2 by 1 to n do j:=2^i/(i-1); if trunc(j)=j then print(j); fi; od; end: P(5000);
MATHEMATICA
f[n_]:=2^n/n*2; Select[Table[f[n], {n, 4, 6!}], IntegerQ] (* Vladimir Joseph Stephan Orlovsky, Dec 05 2009 *)
CROSSREFS
Cf. A016031 (De Bruijn's sequence: 2^(2^(n-1) - n)).
Sequence in context: A298569 A281717 A205971 * A201989 A071775 A269594
KEYWORD
nonn
AUTHOR
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 June 29 16:47 EDT 2024. Contains 373855 sequences. (Running on oeis4.)