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.

A192222 a(n) = Fibonacci(2^n + 1).

Original entry on oeis.org

1, 2, 5, 34, 1597, 3524578, 17167680177565, 407305795904080553832073954, 229265413057075367692743352179590077832064383222590237
Offset: 0

Views

Author

Jonathan Sondow, Jun 26 2011

Keywords

Comments

a(n) is the numerator of the n-th iterate when Newton's method is applied to the function x^2 - x - 1 with initial guess x = 1. The n-th iterate is a(n)/A058635(n). - Jason Zimba, Jan 20 2023

Crossrefs

Cf. A000045 (Fibonacci numbers F(n)), A001622, A134973 (decimal expansion of 3/phi), A192223 (Lucas(2^n + 1)), A338305.

Programs

  • Mathematica
    Table[Fibonacci[2^n + 1], {n, 0, 10}] (* T. D. Noe, Jan 11 2012 *)

Formula

a(n) = A000045(2^n + 1).
Product_{n>0} (1 + 1/a(n)) = 3/phi = A134973, where phi = (1+sqrt(5))/2 is the golden mean.
Sum_{n>=0} 1/a(n) = A338305. - Amiram Eldar, Oct 22 2020