OFFSET
0,4
COMMENTS
A060576(n+1) = 0, 1, 1, 1, 1, 1, 1, ... - (0(n) = Oresme(n) = 0, 1/2, 1/2, 3/8, 1/4, 5/32, 3/32, ...). Both sequences are autosequences of the first kind. f(n) = 0, 1/2, 1/2, 5/8, 3/4, 27/32, 29/32, 121/128, ... is an autosequence of the first kind. Without one 1/2, f(n) is an increasing sequence.
The numerators (1 followed by A075101(n)) are the same as in n/2^n.
LINKS
OEIS Wiki, Autosequence
EXAMPLE
Array of differences of fractions (characteristic aspect of an autosequence of the first kind):
0, 1/2, 1/2, 5/8, 3/4, ...
1/2, 0, 1/8, 1/8, 3/32, ...
-1/2, 1/8, 0, -1/32, -1/32, ...
5/8, -1/8, -1/32, 0, 1/128, ...
-3/4, 3/32, 1/32, 1/128, 0, ...
...
MATHEMATICA
{0}~Join~Array[Numerator@ Abs[1 - Binomial[0, # - 1] - #/2^#] &, 30] (* Michael De Vlieger, May 17 2016 *)
CROSSREFS
KEYWORD
nonn,frac
AUTHOR
Paul Curtz, May 16 2016
STATUS
approved