login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A145116 Numbers of length n binary words with fewer than 8 0-digits between any pair of consecutive 1-digits. 2
1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1023, 2043, 4079, 8143, 16255, 32447, 64767, 129279, 258047, 515072, 1028102, 2052126, 4096110, 8175966, 16319486, 32574206, 65019134, 129780222, 259045373, 517062645, 1032073165, 2060050221, 4111924477, 8207529469 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f.: (1-x+x^9)/(1-3*x+2*x^2+x^9-x^10).
EXAMPLE
a(10) = 1023 = 2^10-1, because 1000000001 is the only binary word of length 10 with not less than 8 0-digits between any pair of consecutive 1-digits.
MAPLE
a:= n-> (Matrix([[2, 1$9]]). Matrix(10, (i, j)-> if i=j-1 then 1 elif j=1 then [3, -2, 0$6, -1, 1][i] else 0 fi)^n)[1, 2]: seq(a(n), n=0..35);
MATHEMATICA
CoefficientList[Series[(1 - x + x^9) / (1 - 3 x + 2 x^2 + x^9 - x^10), {x, 0, 40}], x] (* Vincenzo Librandi, Jun 06 2013 *)
CROSSREFS
8th column of A145111.
Sequence in context: A009714 A051535 A008862 * A172319 A234591 A122265
KEYWORD
nonn,easy
AUTHOR
Alois P. Heinz, Oct 02 2008
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 30 02:11 EDT 2024. Contains 372118 sequences. (Running on oeis4.)