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!)
A179823 Denominators in the approximation of sqrt(2) satisfying the recurrence: a(n)= [a(n-1)*a(n-2)+2]/[a(n-1)+a(n-2)] with a(1)=a(2)=1. 1
1, 1, 2, 5, 29, 408, 33461, 38613965, 3654502875938, 399133058537705128729, 4125636888562548868221559797461449, 4657508918199804645965719872781284840798220312648198320 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
The recurrence is a transform of the Babylonian (Newton's) method for square root computation: a(n+1)= N/2a(n)+a(n)/2 = (a(n)^2+N)/2a(n).
LINKS
EXAMPLE
1/1=1.0, 1/1=1.0, 3/2=1.5, 7/5=1.4, 42/29=1.41379.., 577/408=1.4142156,... - R. J. Mathar, Nov 03 2016
MATHEMATICA
a[1] = a[2] = 1; a[n_] := (a[n - 1] a[n - 2] + 2)/(a[n - 1] + a[n - 2]); Denominator@ Array[ a, 12] (* Robert G. Wilson v, Aug 03 2010 *)
CROSSREFS
Sequence in context: A103592 A209428 A098026 * A064098 A181078 A265773
KEYWORD
nonn,frac
AUTHOR
Mark Dols, Jul 28 2010
EXTENSIONS
a(10) - a(12) from Robert G. Wilson v, Aug 03 2010
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 27 23:22 EDT 2024. Contains 372020 sequences. (Running on oeis4.)