A255630 Number of n-length ternary words avoiding runs of zeros of length 1 (mod 3).
1, 2, 5, 13, 32, 79, 197, 490, 1217, 3025, 7520, 18691, 46457, 115474, 287021, 713413, 1773248, 4407559, 10955357, 27230458, 67683593, 168233257, 418157888, 1039366555, 2583432881, 6421339426, 15960778517, 39671855677, 98607729632
Offset: 0
Links
- Index entries for linear recurrences with constant coefficients, signature (2,0,3).
Programs
-
Mathematica
RecurrenceTable[{a[0] == 1, a[2] == 2, a[3] == 5, a[n] == 2* a[n - 1] + 3*a[n - 3]}, a[n], {n, 0, 29}]
Formula
a(n+3) = 2*a(n+2) + 3*a(n) with n > 0, a(0) = 1, a(2) = 2, a(3) = 5.
G.f.: ( -1-x^2 ) / ( -1+2*x+3*x^3 ). - R. J. Mathar, Aug 07 2015