login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A145115
Numbers of length n binary words with fewer than 7 0-digits between any pair of consecutive 1-digits.
2
1, 2, 4, 8, 16, 32, 64, 128, 256, 511, 1019, 2031, 4047, 8063, 16063, 31999, 63743, 126976, 252934, 503838, 1003630, 1999198, 3982334, 7932670, 15801598, 31476221, 62699509, 124895181, 248786733, 495574269, 987166205, 1966399741, 3916997885, 7802519550
OFFSET
0,2
LINKS
Index entries for linear recurrences with constant coefficients, signature (3, -2, 0, 0, 0, 0, 0, -1, 1).
FORMULA
G.f.: (1-x+x^8)/(1-3*x+2*x^2+x^8-x^9).
EXAMPLE
a(9) = 511 = 2^9-1, because 100000001 is the only binary word of length 9 with not less than 7 0-digits between any pair of consecutive 1-digits.
MAPLE
a:= n-> (Matrix([[2, 1$8]]). Matrix(9, (i, j)-> if i=j-1 then 1 elif j=1 then [3, -2, 0$5, -1, 1][i] else 0 fi)^n)[1, 2]: seq(a(n), n=0..35);
MATHEMATICA
CoefficientList[Series[(1 - x + x^8) / (1 - 3 x + 2 x^2 + x^8 - x^9), {x, 0, 40}], x] (* Vincenzo Librandi, Jun 06 2013 *)
CROSSREFS
7th column of A145111.
Sequence in context: A208849 A054046 A008861 * A172318 A234590 A104144
KEYWORD
nonn,easy
AUTHOR
Alois P. Heinz, Oct 02 2008
STATUS
approved