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”).

A244014
Numerators of rational approximations to sqrt(6) obtained from Newton's method.
4
2, 5, 49, 4801, 46099201, 4250272665676801, 36129635465198759610694779187201, 2610701117696295981568349760414651575095962187244375364404428801
OFFSET
0,1
EXAMPLE
2, 5/2, 49/20, 4801/1960, 46099201/18819920, ...
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);
CROSSREFS
The analogs for sqrt(k), k=2,3,5,6,7 are: A001601/A051009, A002812/A071579, A081459/A081460, A244014/A244015, A244012/A244013.
Sequence in context: A060808 A099658 A357246 * A102011 A328151 A208797
KEYWORD
nonn,frac
AUTHOR
N. J. A. Sloane, Jun 18 2014
STATUS
approved