cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-1 of 1 results.

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.

Original entry on oeis.org

1, 1, 2, 5, 29, 408, 33461, 38613965, 3654502875938, 399133058537705128729, 4125636888562548868221559797461449, 4657508918199804645965719872781284840798220312648198320
Offset: 1

Views

Author

Mark Dols, Jul 28 2010

Keywords

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

Examples

			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
		

Crossrefs

Programs

  • 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 *)

Extensions

a(10) - a(12) from Robert G. Wilson v, Aug 03 2010
Showing 1-1 of 1 results.