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.

A088334 Expansion of 1/phi (phi being the golden ratio) as an infinite product: 1/phi = Product_{k=0..n} (1-1/a(k)).

Original entry on oeis.org

3, 14, 611, 1346270, 6557470319843, 155576970220531065681649694, 87571595343018854458033386304178158174356588264390371
Offset: 0

Views

Author

Thomas Baruchel, Nov 07 2003

Keywords

Comments

The next term is too large to include.

Crossrefs

Programs

  • PARI
    a(n)=if(n<0,0,fibonacci(2^(n+2)-1)+1)

Formula

a(0) = 3, a(n+1) = (a(n)-1)*A001566(n+1)
a(n) = 1+ceiling(1/2*(1-1/sqrt(5))*phi^(2^(n+2))) where phi=(1+sqrt(5))/2. a(n)==2 (mod 3) for n>0. - Benoit Cloitre, Nov 09 2003
a(n) = b(n+2)+1, n>=0, with b(n):= A101342(n) = F(2^n-1). See the reciprocal of the infinite product of this entry. For a proof see the J. Shallit reference. - Wolfdieter Lang, Nov 04 2010