A164399 Number of binary strings of length n with no substrings equal to 0001 or 1010.
14, 24, 41, 70, 119, 202, 343, 582, 987, 1674, 2839, 4814, 8163, 13842, 23471, 39798, 67483, 114426, 194023, 328990, 557843, 945890, 1603871, 2719558, 4611339, 7819082, 13258199, 22480878, 38119043, 64635442, 109597199, 185835286
Offset: 4
Keywords
Links
- R. H. Hardin, Table of n, a(n) for n=4..500
- Index entries for linear recurrences with constant coefficients, signature (2,-1,2,-2).
Programs
-
Mathematica
LinearRecurrence[{2,-1,2,-2}, {14, 24, 41, 70}, 50] (* G. C. Greubel, Sep 18 2017 *)
-
PARI
x='x+O('x^50); Vec(x^4*(-14+4*x-7*x^2+16*x^3)/((1-x)*(2*x^3+x-1))) \\ G. C. Greubel, Sep 18 2017
Formula
G.f.: x^4*(-14+4*x-7*x^2+16*x^3)/((1-x)*(2*x^3+x-1)). - R. J. Mathar, Nov 30 2011