A180145 Eight rooks and one berserker on a 3 X 3 chessboard. G.f.: (1 - 3*x^2)/(1 - 4*x - 3*x^2 + 6*x^3).
1, 4, 16, 70, 304, 1330, 5812, 25414, 111112, 485818, 2124124, 9287278, 40606576, 177543394, 776269636, 3394069270, 14839825624, 64883892490, 283690631212, 1240375248574, 5423269532992, 23712060090418, 103675797469204
Offset: 0
Links
- Index entries for linear recurrences with constant coefficients, signature (4, 3, -6).
Programs
-
Maple
with(LinearAlgebra): nmax:=22; m:=1; A[5]:=[0,1,0,1,1,1,1,1,1]: A:= Matrix([[0,1,1,1,0,0,1,0,0], [1,0,1,0,1,0,0,1,0], [1,1,0,0,0,1,0,0,1], [1,0,0,0,1,1,1,0,0], A[5], [0,0,1,1,1,0,0,0,1], [1,0,0,1,0,0,0,1,1], [0,1,0,0,1,0,1,0,1], [0,0,1,0,0,1,1,1,0]]): for n from 0 to nmax do B(n):=A^n: a(n):= add(B(n)[m,k],k=1..9): od: seq(a(n), n=0..nmax);
Comments