|
| |
|
|
A145112
|
|
Numbers of length n binary words with fewer than 4 0-digits between any pair of consecutive 1-digits.
|
|
1
|
|
|
|
1, 2, 4, 8, 16, 32, 63, 123, 239, 463, 895, 1728, 3334, 6430, 12398, 23902, 46077, 88821, 171213, 330029, 636157, 1226238, 2363656, 4556100, 8782172, 16928188, 32630139, 62896623, 121237147, 233692123, 450456059, 868281980, 1673667338
(list;
graph;
refs;
listen;
history;
text;
internal format)
|
|
|
|
OFFSET
|
0,2
|
|
|
LINKS
|
Table of n, a(n) for n=0..32.
|
|
|
FORMULA
|
G.f.: (1-x+x^5)/(1-3*x+2*x^2+x^5-x^6).
|
|
|
EXAMPLE
|
a(6) = 63 = 2^6-1, because 100001 is the only binary word of length 6 with not less than 4 0-digits between any pair of consecutive 1-digits.
|
|
|
MAPLE
|
a:= n-> (Matrix([[2, 1$5]]). Matrix(6, (i, j)-> if i=j-1 then 1 elif j=1 then [3, -2, 0$2, -1, 1][i] else 0 fi)^n)[1, 2]: seq (a(n), n=0..35);
|
|
|
CROSSREFS
|
4th column of A145111.
Sequence in context: A052396 A051040 A006261 * A062259 A001949 A210031
Adjacent sequences: A145109 A145110 A145111 * A145113 A145114 A145115
|
|
|
KEYWORD
|
nonn
|
|
|
AUTHOR
|
Alois P. Heinz, Oct 02 2008
|
|
|
STATUS
|
approved
|
| |
|
|