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.

A079450 a(n) = 2^(n-1)*u(n) where u(1)=1 and u(n) = frac(3/2*u(n-1)) + 1.

Original entry on oeis.org

1, 3, 5, 15, 29, 55, 101, 175, 269, 807, 1397, 2143, 6429, 11095, 16901, 50703, 86573, 259719, 517013, 1026751, 2031677, 3997879, 7799333, 15009391, 28250957, 51198439, 86486453, 259459359, 509942621, 992956951, 1905129029, 3567903439
Offset: 1

Views

Author

Benoit Cloitre, Jan 13 2003

Keywords

Programs

  • Mathematica
    u[1]:= 1; u[n_]:= u[n]= FractionalPart[3*u[n-1]/2] +1; a[n_]:= 2^(n-1)* u[n]; Table[a[n], {n, 1, 40}] (* G. C. Greubel, Jan 18 2019 *)

Formula

a(n+1)<=3*a(n). Conjecture : a(n+1)=3*a(n) if and only if n is a greedy power of (2/3) (i.e. n is in A077468)