login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A061534
Expansion of (1-x^2)/(1-3*x-x^2+x^3).
0
1, 3, 9, 29, 93, 299, 961, 3089, 9929, 31915, 102585, 329741, 1059893, 3406835, 10950657, 35198913, 113140561, 363669939, 1168951465, 3757383773, 12077432845, 38820730843, 124782241601, 401090022801, 1289231579161, 4144002518683, 13320149112409
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
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
a(n) = A033505(n)-A033505(n-2). - R. J. Mathar, Oct 24 2015
PROG
(PARI) Vec(-(x-1)*(x+1)/(x^3-x^2-3*x+1) + O(x^100)) \\ Colin Barker, Sep 13 2014
CROSSREFS
Cf. A033505.
Sequence in context: A098589 A024744 A024964 * A300044 A356937 A071728
KEYWORD
nonn,easy
AUTHOR
Henry Bottomley, May 16 2001
STATUS
approved