A053576 Smallest number whose Euler totient is divisible by 2^n.
1, 3, 5, 15, 17, 51, 85, 255, 257, 771, 1285, 3855, 4369, 13107, 21845, 65535, 65537, 196611, 327685, 983055, 1114129, 3342387, 5570645, 16711935, 16843009, 50529027, 84215045, 252645135, 286331153, 858993459, 1431655765, 4294967295, 8589934592, 17179869184, 34359738368, 68719476736, 137438953472, 274877906944, 549755813888, 1099511627776
Offset: 0
Keywords
Examples
1,2,4,8,...,131072 divide phi of 2,3,5,15,...,196611 = 3*65537 respectively.
Links
- Charles R Greathouse IV, Table of n, a(n) for n = 0..3320
Crossrefs
Programs
-
Mathematica
With[{s = Array[EulerPhi, 10^6]}, Table[FirstPosition[s, ?(Divisible[#, 2^n] &)][[1]], {n, 0, 19}]] (* _Michael De Vlieger, Sep 05 2017 *)
-
PARI
a(n)={ if(n >= 8589934592 && valuation(n>>5,2)>27, warning("Result is conjectural on the nonexistence of Fermat primes >= F(33).") ); if(n>31, return(2<
Charles R Greathouse IV, Jul 15 2013
Extensions
More odd terms from Jud McCranie, Jan 25 2000
Comments