A176825 Primes of the form (k+1)^k mod k^k.
113, 24337, 9492289
Offset: 1
Examples
5^4 mod 4^4 = 113 is a prime.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..4
Programs
-
Mathematica
Select[Table[Mod[(n+1)^n,n^n],{n,140}],PrimeQ[ # ]&]
Comments