A100012 Let h(k) = a(k)*((145*a(k)^3)-(280*a(k)^2)+(179*a(k))-38)/6, then a(n) = h(a(n-1)) for n >= 1 and a(0) =2.
2, 120, 4930988840, 14287387711051307292599794275187472361080
Offset: 0
Programs
-
Mathematica
NestList[#/6*(145#^3-280#^2+179#-38)&,2,3] (* Harvey P. Dale, Apr 09 2015 *)
Comments