A133378 a(1)=1. For n >= 2, a(n) = the largest prime divisor of (a(n-1)^a(n-1) + 1).
1, 2, 5, 521
Offset: 1
Links
- factordb.com, 521^521+1.
Crossrefs
Cf. A007571.
Programs
-
Mathematica
NestList[FactorInteger[#^#+1][[-1,1]]&,1,3] (* Harvey P. Dale, Jun 21 2012 *)
Comments