login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A320947 a(n) is the number of dominoes, among all domino tilings of the 2 X n rectangle, sharing a length-2 side with the boundary of the rectangle. 2
1, 4, 8, 16, 30, 56, 102, 184, 328, 580, 1018, 1776, 3082, 5324, 9160, 15704, 26838, 45736, 77742, 131840, 223112, 376844, 635378, 1069536, 1797650, 3017236, 5057672, 8467744, 14161038, 23657240, 39482358, 65832136, 109671112, 182552404, 303629290 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
a(n) is also the number of dominoes, among all domino tilings of the 2 x n rectangle, sharing a contiguous path of length at least 2 with the boundary of the rectangle.
LINKS
B. E. Tenner, Tiling-based models of perimeter and area, arXiv:1811.00082 [math.CO], 2018.
FORMULA
a(n) = a(n-1) + a(n-2) + 2*Fibonacci(n-1) for n > 3.
From Colin Barker, Nov 02 2018: (Start)
G.f.: x*(1 + 2*x - x^2 - 2*x^3 - x^4) / (1 - x - x^2)^2.
a(n) = 2*a(n-1) + a(n-2) - 2*a(n-3) - a(n-4) for n>5.
a(n) = 2^(1-n)*(-4*sqrt(5)*((1-sqrt(5))^n - (1+sqrt(5))^n) + 5*((1-sqrt(5))^n + (1+sqrt(5))^n)*n) / 25 for n>1.
(End)
EXAMPLE
a(4) = 16 because among the five domino tilings of the 2 X 4 rectangle, 16 dominoes share a length 2 side with the boundary.
MATHEMATICA
Rest@ CoefficientList[Series[x (1 + 2 x - x^2 - 2 x^3 - x^4)/(1 - x - x^2)^2, {x, 0, 35}], x] (* Michael De Vlieger, Nov 05 2018 *)
PROG
(PARI) Vec(x*(1 + 2*x - x^2 - 2*x^3 - x^4) / (1 - x - x^2)^2 + O(x^40)) \\ Colin Barker, Nov 02 2018
CROSSREFS
Cf. A000045.
Sequence in context: A215348 A301144 A298803 * A329778 A355391 A053163
KEYWORD
nonn,easy
AUTHOR
Bridget Tenner, Oct 24 2018
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 06:42 EDT 2024. Contains 371964 sequences. (Running on oeis4.)