A053287 Euler totient function (A000010) of 2^n - 1.
1, 2, 6, 8, 30, 36, 126, 128, 432, 600, 1936, 1728, 8190, 10584, 27000, 32768, 131070, 139968, 524286, 480000, 1778112, 2640704, 8210080, 6635520, 32400000, 44717400, 113467392, 132765696, 533826432, 534600000, 2147483646, 2147483648, 6963536448, 11452896600
Offset: 1
Links
- Amiram Eldar, Table of n, a(n) for n = 1..1206 (terms 1..100 from T. D. Noe, terms 101..250 from Jianing Song, terms 251..400 from Michel Marcus)
- Florian Luca, On the sum of divisors of the Mersenne numbers, Mathematica Slovaca, Vol. 53. No. 5 (2003), pp. 457-466.
Programs
-
GAP
List([1..35],n->Phi(2^n-1)); # Muniru A Asiru, Oct 31 2018
-
Magma
[EulerPhi(2^n-1): n in [1..40]]; // Vincenzo Librandi, Jul 15 2015
-
Maple
a := n -> numtheory:-phi(2^n - 1): seq(a(n), n=1..32); # Zerinvary Lajos, Oct 05 2007
-
Mathematica
EulerPhi[2^Range[25] - 1] (* Giovanni Resta, Sep 06 2019 *)
-
PARI
a(n) = eulerphi(2^n-1) \\ Michael B. Porter, Oct 06 2009
Comments