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.

A124230 Denominator of g(n) defined by g(1)=1, g(2n)=1/g(n)+1, g(2n+1)=g(2n).

Original entry on oeis.org

1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13
Offset: 1

Views

Author

Benoit Cloitre, Oct 20 2006

Keywords

Crossrefs

Programs

  • Mathematica
    Fibonacci[BitLength[Range[100]]] (* Paolo Xausa, Oct 16 2024 *)
  • PARI
    g(n)=if(n<2,1,if(n%2,g(n-1),1/g(n/2)+1))
    a(n)=denominator(g(n))
    
  • PARI
    a(n)=fibonacci(ceil(log(n+1)/log(2)))

Formula

a(n) = A000045(ceiling(log(n+1)/log(2))).
a(n) = A000045(A070939(n)). - Paolo Xausa, Oct 17 2024
Showing 1-1 of 1 results.