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.

A006271 Numerators of a continued fraction for 1 + sqrt(2).

Original entry on oeis.org

2, 5, 197, 7761797, 467613464999866416197, 102249460387306384473056172738577521087843948916391508591105797
Offset: 0

Views

Author

Keywords

Comments

With b(n) = floor((1+sqrt(2))^n) (cf. A080039) the terms appear to be b(2*3^n). - Joerg Arndt, Apr 29 2013
Note that 1 + sqrt(2) = (c + sqrt(c^2+4))/2 and has regular continued fraction [c, c, ...] with c = 2. With b(n) = A006266(n), it can be expanded into an irregular continued fraction f(1) = b(1) and f(n) = (b[n-1]^2+1)/(b[n]-b[n-1]), and numerator(f(n)) = a(n) (cf. Shallit). - Michel Marcus, Apr 29 2013

References

  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

For denominators see A006272. Cf. A002814, A006266, A006273, A006275, A006276.

Programs

  • Maple
    a := proc (n) option remember; if n = 1 then 5 else a(n-1)^3 + 3*a(n-1)^2 - 3 end if; end proc:
    seq(a(n), n = 1 .. 5); # Peter Bala, Jan 19 2022

Formula

From Peter Bala, Jan 18 2022: (Start)
a(n) = (3 + 2*sqrt(2))^3^(n-1) + (3 - 2*sqrt(2))^3^(n-1) - 1 for n >= 1.
a(n) = A006266(n)^2 + 1 for n >= 1.
a(1) = 5 and a(n) = a(n-1)^3 + 3*a(n-1)^2 - 3 for n >= 2.
a(1) = 5 and a(n) = 8*(Product_{k = 1..n-1} a(k))^2 - 3 for n >= 2.
2 - Product_{n = 1..N} (1 + 2/a(n))^2 = 8/(a(N+1) + 3). Therefore
sqrt(2) = (1 + 2/5) * (1 + 2/197) * (1 + 2/7761797) * (1 + 2/ 467613464999866416197) * ... - see Bauer.
The convergence is cubic - see Fine. The first six factors of the product give sqrt(2) correct to more than 500 decimal places. (End)

Extensions

Previous values for a(3) and a(4) were 776 and 1797. They have been merged into 7761797 to reflect the 2nd continued fraction on page 6 of Shallit paper by Michel Marcus, Apr 29 2013