A273918 Numerator of z(n), where z(n) = z(n - 1)^2 + 1/4 and z(0) = 1.
1, 5, 29, 905, 835409, 698981939105, 488580362881004355588929, 238710771078004490460834598457103704776369419905
Offset: 0
Examples
1^2 + 1/4 = 5/4, hence a(1) = 5. (5/4)^2 + 1/4 = 25/16 + 4/16 = 29/16, hence a(2) = 29.
Programs
-
Mathematica
Numerator[NestList[#^2 + 1/4 &, 1, 8]]
Comments