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.

A192742 Number of matchings in the n-antiprism graph.

This page as a plain text file.
%I A192742 #32 Feb 16 2025 08:33:15
%S A192742 3,15,51,191,708,2631,9775,36319,134943,501380,1862875,6921503,
%T A192742 25716811,95550687,355018116,1319068095,4900991135,18209608887,
%U A192742 67657713855,251381908996,934008268531,3470303209839,12893894812259,47907203888767,177998984624708,661354367518327,2457258957728079,9129933787225743,33922224882718431,126037862684586116
%N A192742 Number of matchings in the n-antiprism graph.
%C A192742 Antiprism graphs have n >= 3; sequence extended via recurrence to start at n = 1
%H A192742 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/AntiprismGraph.html">Antiprism Graph</a>
%H A192742 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/IndependentEdgeSet.html">Independent Edge Set</a>
%H A192742 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/Matching.html">Matching</a>
%H A192742 <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (3,3,-1,-1).
%F A192742 a(n) = 3*a(n-1) + 3*a(n-2) - a(n-3) - a(n-4).
%F A192742 G.f.: -x*(-3-6*x+3*x^2+4*x^3)/(1-3*x-3*x^2+x^3+x^4).
%F A192742 a(n) = A073817(2*n). - _Greg Dresden_, Jan 27 2021
%t A192742 LinearRecurrence[{3, 3, -1, -1}, {3, 15, 51, 191}, 20]
%t A192742 Table[RootSum[1 + # - 3 #^2 - 3 #^3 + #^4 &, #^n &], {n, 20}]
%t A192742 CoefficientList[Series[(3 + 6 x - 3 x^2 - 4 x^3)/(1 - 3 x - 3 x^2 + x^3 + x^4), {x, 0, 20}], x]
%Y A192742 Bisection of A073817.
%K A192742 nonn,easy
%O A192742 1,1
%A A192742 _Eric W. Weisstein_, Jul 09 2011