cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A243206 Number of 3-matchings of the n X n grid graph.

This page as a plain text file.
%I A243206 #6 Jun 01 2014 14:38:49
%S A243206 0,0,0,56,1044,6632,26172,78536,196916,434584,871612,1622552,2845076,
%T A243206 4749576,7609724,11773992,17678132,25858616,36967036,51785464,
%U A243206 71242772,96431912,128628156,169308296,220170804,283156952,360472892,454612696,568382356,704924744
%N A243206 Number of 3-matchings of the n X n grid graph.
%C A243206 Number of ways 3 dominoes can be placed on an n X n chessboard.
%H A243206 Alois P. Heinz, <a href="/A243206/b243206.txt">Table of n, a(n) for n = 0..1000</a>
%F A243206 G.f.: 4*x^3*(-14-163*x-125*x^2-5*x^5-6*x^4+72*x^3+x^6)/(x-1)^7.
%F A243206 a(n) = (4*n^6-12*n^5-30*n^4+116*n^3+14*n^2-272*n+156)/3 for n>=3, a(n) = 0 for n<3.
%p A243206 a:= n-> `if`(n<3, 0, ((((((4*n-12)*n-30)*n+116)*n+14)*n-272)*n+156)/3):
%p A243206 seq(a(n), n=0..40);
%Y A243206 Column k=3 of A242861.
%K A243206 nonn
%O A243206 0,4
%A A243206 _Alois P. Heinz_, Jun 01 2014