login
A255815
Numbers of words on {0,1,2,3,4,5} having no isolated zeros.
1
1, 5, 26, 136, 711, 3716, 19421, 101501, 530481, 2772486, 14490016, 75730071, 395792776, 2068556381, 10811024761, 56502330541, 295301641346, 1543353319176, 8066123361031, 42156481777036, 220325040452941, 1151498450637621
OFFSET
0,2
LINKS
D. Birmajer, J. B. Gil, and M. D. Weiner, On the Enumeration of Restricted Words over a Finite Alphabet, J. Int. Seq. 19 (2016) # 16.1.3, example 11.
FORMULA
a(n+3) = 6*a(n+2) - 5*a(n+1)+ 5*a(n) with n>=0, a(0) = 1, a(1) = 5, a(2) = 26.
G.f.: (-1 + x - x^2)/(-1 + 6*x - 5*x^2 + 5*x^3). - R. J. Mathar, Nov 07 2015
MATHEMATICA
RecurrenceTable[{a[0] == 1, a[1] == 5, a[2]== 26, a[n] == 6 a[n - 1] - 5 a[n - 2] + 5 a[n - 3]}, a[n], {n, 0, 21}]
LinearRecurrence[{6, -5, 5}, {1, 5, 26}, 100] (* G. C. Greubel, Jun 02 2016 *)
KEYWORD
nonn,easy
AUTHOR
Milan Janjic, Mar 07 2015
STATUS
approved