OFFSET
0,2
COMMENTS
a(n) is the number of ways to tile a 2 X (n+1) board with squares and dominoes with exactly one vertical domino. - Greg Dresden and Zijie He, Jun 14 2022
LINKS
Emanuele Munarini, Apr 01 2008, Table of n, a(n) for n = 0..100
Ömer Egecioglu, Elif Saygi, and Zülfükar Saygi, The Mostar index of Fibonacci and Lucas cubes, arXiv:2101.04740 [math.CO], 2021. Mentions this sequence.
Index entries for linear recurrences with constant coefficients, signature (4,0,-10,0,4,-1).
FORMULA
G.f.: (1-x)^2/((1+x)^2*(1-3x+x^2)^2).
Recurrence: a(n+6) = 4a(n+5) - 10a(n+3) + 4a(n+1) - a(n).
MATHEMATICA
LinearRecurrence[{4, 0, -10, 0, 4, -1}, {1, 2, 9, 26, 84, 250}, 30] (* Harvey P. Dale, Oct 03 2024 *)
PROG
(PARI) a(n) = sum(k=0, n, fibonacci(k+1)^2*fibonacci(n-k+1)^2); \\ Michel Marcus, Jan 13 2021
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Emanuele Munarini, Apr 01 2008
STATUS
approved