The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A075101 Numerator of 2^n/n. 15
2, 2, 8, 4, 32, 32, 128, 32, 512, 512, 2048, 1024, 8192, 8192, 32768, 4096, 131072, 131072, 524288, 262144, 2097152, 2097152, 8388608, 2097152, 33554432, 33554432, 134217728, 67108864, 536870912, 536870912, 2147483648, 134217728, 8589934592, 8589934592, 34359738368, 17179869184, 137438953472 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = 2^(n - A007814(n)).
a(n) = 2*A084623(n). - Paul Curtz, Jan 28 2013
a(n) = 2^A093048(n). - Paul Curtz, Jun 10 2016
From Peter Bala, Feb 25 2019: (Start)
a(n) = 2^n/gcd(n,2^n).
O.g.f.: F(2*x) - (1/2)*F((2*x)^2) - (1/4)*F((2*x)^4) - (1/8)*F((2*x)^8) - ..., where F(x) = x/(1 - x). Cf. A000265.
O.g.f. for reciprocals: Sum_{n >= 1} x^n/a(n) = F((x/2)) + F((x/2)^2) + 2*F((x/2)^4) + 4*F((x/2)^8) + 8*F((x/2)^16) + 16*F((x/2)^32) + .... (End)
Sum_{n>=1} 1/a(n) = Sum_{n>=1} 2^(2^(n-1)+n-1)/(2^(2^n) - 1) = Sum_{n>=1} A073113(n-1)/A051179(n) = 1.48247501707... - Amiram Eldar, Aug 14 2022
MAPLE
[seq(numer(2^n/n), n=1..50)];
MATHEMATICA
f[n_]:=Numerator[2^n/n]; Array[f, 50] (* Vladimir Joseph Stephan Orlovsky, Feb 16 2011 *)
PROG
(Python)
from fractions import Fraction
def A075101(n):
return (Fraction(2**n)/n).numerator # Chai Wah Wu, Mar 25 2018
(PARI) a(n) = numerator(2^n/n); \\ Michel Marcus, Mar 25 2018
(PARI) a(n) = 2^(n - valuation(n, 2)) \\ Jianing Song, Oct 24 2018
(Magma) [Numerator(2^n/n): n in [1..50]]; // G. C. Greubel, Feb 28 2019
(Sage) [numerator(2^n/n) for n in (1..50)] # G. C. Greubel, Feb 28 2019
CROSSREFS
Denominator is A000265(n).
Sequence in context: A320423 A274449 A333711 * A075103 A021818 A336198
KEYWORD
nonn,frac
AUTHOR
Reinhard Zumkeller, Sep 01 2002
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 May 17 16:19 EDT 2024. Contains 372603 sequences. (Running on oeis4.)