A378683 a(0) = 1, a(n+1) = 6*a(n)^3 - 3*a(n).
1, 3, 153, 21489003, 59538796254981950751153, 1266343134315970349117919634635229303292221774134557782012151266098003
Offset: 0
Keywords
Links
- Wikipedia, Halley's method.
Programs
-
Maple
a:=1 : A:=NULL : for k to 5 do a:=6*a^3-3*a : A:=A,a od : A;
-
Mathematica
NestList[6#^3-3# &, 1, 5] (* Stefano Spezia, Dec 06 2024 *)
Comments