A186751 a(0) = 3; thereafter, a(n) = a(n-1)^2 - 4.
3, 5, 21, 437, 190965, 36467631221, 1329888126870853950837, 1768602429992068534155014726612412013000565
Offset: 0
Examples
a(1) = a(0)^2 - 4 = 3^2 - 4 = 5, which is, like a(0), a prime.
Programs
-
Mathematica
NestList[#^2-4&,3,10] (* Harvey P. Dale, Mar 14 2011 *)
Comments