login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A145008 Reduced numerators of the convergents to 2 = sqrt(4) using the recursion x -> (4/x + x)/2. 0
5, 41, 3281, 21523361, 926510094425921, 1716841910146256242328924544641, 5895092288869291585760436430706259332839105796137920554548481 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The recursion x -> (n/x + x)/2 converges to a square root of n.
These are the numerators of the first order Newton method to solve x^2-4=f(x)=0, starting at x=1 as the initial estimate: x -> x-f(x)/f'(x), where f'(x)=2x is the first derivative. - R. J. Mathar, Oct 07 2008
The equivalent sequence for n=9 starting from x=1 is 5, 17, 257,.., apparently A000215. - R. J. Mathar, Oct 14 2008
LINKS
Wikipedia, Newton's method.
EXAMPLE
(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...
PROG
(PARI) g(n, p) = x=1; for(j=1, p, x=(n/x+x)/2; print1(numerator(x)", "))
g(4, 8)
CROSSREFS
Cf. A059917.
Sequence in context: A318294 A065035 A340535 * A216610 A025173 A222474
KEYWORD
frac,nonn
AUTHOR
Cino Hilliard, Sep 28 2008
EXTENSIONS
Divided the right hand side of formula in the first comment by 2. - R. J. Mathar, Oct 14 2008
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 16:40 EDT 2024. Contains 371916 sequences. (Running on oeis4.)