A244014 Numerators of rational approximations to sqrt(6) obtained from Newton's method.
2, 5, 49, 4801, 46099201, 4250272665676801, 36129635465198759610694779187201, 2610701117696295981568349760414651575095962187244375364404428801
Offset: 0
Examples
2, 5/2, 49/20, 4801/1960, 46099201/18819920, ...
Crossrefs
Programs
-
Maple
N:=6; s:=[floor(sqrt(N))]; M:=8; for n from 1 to M do x:=s[n]; h:=(N-x^2)/(2*x); s:=[op(s),x+h]; od: lprint(s); s1:=map(numer,s); s2:=map(denom,s);