login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A253904
Denominators of approximation to 2^(1/3) by Halley's method after n iterations.
1
1, 4, 504, 387144514512, 134785660354544802902690364367892668197456173472
OFFSET
0,2
COMMENTS
Numerators are given in A253690.
LINKS
Eric Weisstein's World of Mathematics, Halley's method
Wikipedia, Cube root
FORMULA
a(n) = y(n)/gcd(x(n),y(n))
where x(n) = A253690(n-1)*(A253690(n-1)^3n + 4*a(n-1)^3)
and y(n) = 2*(A253690(n-1)^3 + a(n-1)^3);
x(0) = y(0) = 1.
EXAMPLE
Approximations to 2^(1/3):
n = 1: 5/4 = 1.25; error = -0.00992104...
n = 2: 635/504 = 1.2599206...; error = -0.00000041...
n = 3: 487771523185/387144514512 = 1.2599210...; error = -3.001136... * 10^-20.
PROG
(PARI) {a=1; b=1; print1(b, ", "); for(n=1, 5, x=a*(a^3+4*b^3); y=2*b*(a^3+b^3); a=x/gcd(x, y); b=y/gcd(x, y); print1(b, ", "))}
CROSSREFS
KEYWORD
nonn,frac
AUTHOR
Kival Ngaokrajang, Jan 24 2015
STATUS
approved