A145008 Reduced numerators of the convergents to 2 = sqrt(4) using the recursion x -> (4/x + x)/2.
5, 41, 3281, 21523361, 926510094425921, 1716841910146256242328924544641, 5895092288869291585760436430706259332839105796137920554548481
Offset: 1
Examples
(4/1+1)/2 = 5/2 = 2.5 (4/5/2+5/2)/2 = 41/20 = 2.05 (4/(41/20)+41/20)/2 = 3281/1640 = 2.000609...
Links
- Wikipedia, Newton's method.
Crossrefs
Cf. A059917.
Programs
-
PARI
g(n,p) = x=1;for(j=1,p,x=(n/x+x)/2;print1(numerator(x)",")) g(4,8)
Extensions
Divided the right hand side of formula in the first comment by 2. - R. J. Mathar, Oct 14 2008
Comments