OFFSET
0,5
COMMENTS
Based on Conway's internal recursive structure, this sequence need a minimum start sequence of three ones ( here four are used) followed by a two to get started and has two alternating modes for the limiting ratio a(n+1)/a(n).
MATHEMATICA
a[0] = 1; a[1] = 1; a[2] = 1; a[3] = 1; a[4] = 2;
a[n_] := a[n] = a[Floor[a[n - 1]/2]] + a[n - Floor[a[n - 1]/2]]
Table[a[n], {n, 0, 100}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Roger L. Bagula, Nov 30 2010
STATUS
approved