OFFSET
0,2
COMMENTS
The number of tilings of a 2*n grid using dominoes and singletons with two horizontal dominoes or one vertical domino in the two rightmost squares. - John M. Campbell, Mar 05 2011
LINKS
INRIA Algorithms Project, Encyclopedia of Combinatorial Structures 1056
Index entries for linear recurrences with constant coefficients, signature (3,1,-1).
FORMULA
a(n) = 3*a(n-1)+a(n-2)-a(n-3) for n>3. - Colin Barker, Sep 13 2014
G.f.: -(x-1)*(x+1) / (x^3-x^2-3*x+1). - Colin Barker, Sep 13 2014
PROG
(PARI) Vec(-(x-1)*(x+1)/(x^3-x^2-3*x+1) + O(x^100)) \\ Colin Barker, Sep 13 2014
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Henry Bottomley, May 16 2001
STATUS
approved