A319183 a(n) = phi(n^n - 1)/n where phi is A000010.
1, 4, 32, 280, 5040, 37856, 829440, 15676416, 589032000, 10374307328, 388566097920, 7619466454080, 390751784579520, 11138729990400000, 575561351791902720, 24328359845627701248, 1640651748984970444800, 34709116765970413844280, 2459108342476800000000000
Offset: 2
Keywords
Links
- Seiichi Manyama, Table of n, a(n) for n = 2..50
- Eric Weisstein's World of Mathematics, Totient Function.
- Wikipedia, Euler's totient function.
Programs
-
Mathematica
Table[EulerPhi[n^n-1]/n,{n,20}] (* Harvey P. Dale, Aug 04 2020 *)
-
PARI
{a(n) = eulerphi(n^n-1)/n}
Comments