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.
%I A028468 #69 Apr 20 2025 07:56:37 %S A028468 1,1,13,41,281,1183,6728,31529,167089,817991,4213133,21001799, %T A028468 106912793,536948224,2720246633,13704300553,69289288909,349519610713, %U A028468 1765722581057,8911652846951,45005025662792,227191499132401,1147185247901449,5791672851807479 %N A028468 Number of perfect matchings in graph P_{6} X P_{n}. %D A028468 F. Faase, On the number of specific spanning subgraphs of the graphs G X P_n, Ars Combin. 49 (1998), 129-154. %D A028468 R. P. Stanley, Enumerative Combinatorics I, p. 292. %H A028468 Alois P. Heinz, <a href="/A028468/b028468.txt">Table of n, a(n) for n = 0..450</a> %H A028468 F. Faase, <a href="http://www.iwriteiam.nl/Cpaper.zip">On the number of specific spanning subgraphs of the graphs G X P_n</a>, Preliminary version of paper that appeared in Ars Combin. 49 (1998), 129-154. %H A028468 F. Faase, <a href="http://www.iwriteiam.nl/counting.html">Counting Hamiltonian cycles in product graphs</a> %H A028468 F. Faase, <a href="http://www.iwriteiam.nl/Cresults.html">Results from the counting program</a> %H A028468 David Klarner and Jordan Pollack, <a href="http://dx.doi.org/10.1016/0012-365X(80)90098-9">Domino tilings of rectangles with fixed width</a>, Disc. Math. 32 (1980) 45-52. %H A028468 Per Hakan Lundow, <a href="http://www.theophys.kth.se/~phl/Text/1factors.pdf">Computation of matching polynomials and the number of 1-factors in polygraphs</a>, Research report, No 12, 1996, Department of Math., Umea University, Sweden. %H A028468 Per Hakan Lundow, <a href="http://www.theophys.kth.se/~phl/Text/1factors2.ps.gz">Enumeration of matchings in polygraphs</a>, 1998. %H A028468 R. J. Mathar, <a href="http://arxiv.org/abs/1311.6135">Paving rectangular regions with rectangular tiles: tatami and non-tatami tilings</a>, arXiv:1311.6135 [math.CO], 2013, Table 5. %H A028468 Thotsaporn "Aek" Thanatipanonda, <a href="https://web.archive.org/web/2024*/https://www.fq.math.ca/Papers1/57-5/thanatipanonda.pdf">Statistics of Domino Tilings on a Rectangular Board</a>, Fibonacci Quart. 57 (2019), no. 5, 145-153. See p. 151. %H A028468 <a href="/index/Rec#order_08">Index entries for linear recurrences with constant coefficients</a>, signature (1,20,10,-38,-10,20,-1,-1). %F A028468 From _N. J. A. Sloane_, Feb 03 2009: (Start) %F A028468 a(1) = 1, %F A028468 a(2) = 13, %F A028468 a(3) = 41, %F A028468 a(4) = 281, %F A028468 a(5) = 1183, %F A028468 a(6) = 6728, %F A028468 a(7) = 31529, %F A028468 a(8) = 167089, %F A028468 a(9) = 817991, %F A028468 a(10) = 4213133, %F A028468 a(11) = 21001799, %F A028468 a(12) = 106912793, %F A028468 a(13) = 536948224, %F A028468 a(14) = 2720246633, and %F A028468 a(n) = 40*a(n-2) - 416*a(n-4) + 1224*a(n-6) - 1224*a(n-8) + 416*a(n-10) - 40*a(n-12) + a(n-14). (From Faase's web page.) (End) %F A028468 G.f.: (x^2-2*x-1)*(x^4+2*x^3-3*x^2-2*x+1) / ( (1-x) *(1+x) *(x^3-5*x^2+6*x-1) *(x^3+6*x^2+5*x+1) ). %F A028468 a(n) = a(n-1)+20*a(n-2)+10*a(n-3)-38*a(n-4)-10*a(n-5)+20*a(n-6)-a(n-7)-a(n-8). - _Sergey Perepechko_, Sep 23 2018 %p A028468 seq(coeff(series((1+2*x-x^2)*(x^4+2*x^3-3*x^2-2*x+1)/((x-1)*(x+1)*(x^3-5*x^2+6*x-1)*(x^3+6*x^2+5*x+1)),x,n+1), x, n), n = 0 .. 25); # _Muniru A Asiru_, Nov 23 2018 %t A028468 a[n_] := Product[2(2 + Cos[(2 k Pi)/7] + Cos[(2 j Pi)/(n+1)]), {k, 1, 3}, {j, 1, n/2}] // Round; %t A028468 Table[a[n], {n, 0, 20}] (* _Jean-François Alcover_, Aug 19 2018, after A099390 *) %t A028468 LinearRecurrence[{1, 20, 10, -38, -10, 20, -1, -1}, {1, 1, 13, 41, 281, 1183, 6728, 31529}, 30] (* _Vincenzo Librandi_, Nov 24 2018 *) %o A028468 (PARI) my(x='x+O('x^30)); Vec(-(x^2-2*x-1)*(x^4+2*x^3-3*x^2-2*x+1)/((x-1)*(1+x)*(x^3-5*x^2+6*x-1)*(x^3+6*x^2+5*x+1))) \\ _Altug Alkan_, Mar 23 2016 %o A028468 (Magma) m:=30; R<x>:=PowerSeriesRing(Integers(), m); Coefficients(R!( (x^2-2*x-1)*(x^4+2*x^3-3*x^2-2*x+1)/((1-x^2)*(x^3-5*x^2+6*x-1)*(x^3+ 6*x^2+5*x+1)) )); // _G. C. Greubel_, Nov 25 2018 %o A028468 (Sage) s=((x^2-2*x-1)*(x^4+2*x^3-3*x^2-2*x+1)/((1-x^2)*(x^3-5*x^2+6*x-1) *(x^3+6*x^2+5*x+1))).series(x,30); s.coefficients(x, sparse=False) # _G. C. Greubel_, Nov 25 2018 %Y A028468 Row 6 of arrays A099390, A189006. %Y A028468 Column k=2 of A251072. %Y A028468 Cf. A005178. %K A028468 nonn,easy %O A028468 0,3 %A A028468 _N. J. A. Sloane_, _Per H. Lundow_