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.

A290494 Number of irredundant sets in the n-wheel graph.

This page as a plain text file.
%I A290494 #11 Feb 16 2025 08:33:49
%S A290494 5,12,17,25,44,76,131,219,376,645,1107,1894,3245,5564,9539,16351,
%T A290494 28027,48047,82367,141200,242054,414949,711342,1219443,2090471,
%U A290494 3583662,6143420,10531575,18054123,30949916,53056987,90954815,155922504,267295659,458221026
%N A290494 Number of irredundant sets in the n-wheel graph.
%H A290494 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/IrredundantSet.html">Irredundant Set</a>
%H A290494 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/WheelGraph.html">Wheel Graph</a>
%H A290494 <a href="/index/Rec#order_07">Index entries for linear recurrences with constant coefficients</a>, signature (2, 0, -1, 1, -1, -1, 1).
%F A290494 a(n)=2*a(n-1)-a(n-3)+a(n-4)-a(n-5)-a(n-6)+a(n-7).
%F A290494 G.f.: -x^4*(5+2*x-7*x^2-4*x^3+x^4-2*x^5+4*x^6) / ( (x-1)*(x^6-x^4-x^2-x+1) ).
%t A290494 Table[1 - RootSum[1 - #^2 - #^4 - #^5 + #^6 &, -2 #^(n + 3) - #^(n + 4) - #^(n + 6) + #^(n + 7) &], {n, 4, 20}]
%t A290494 LinearRecurrence[{2, 0, -1, 1, -1, -1, 1}, {5, 12, 17, 25, 44, 76, 131}, 20]
%t A290494 CoefficientList[Series[(-5 - 2 x + 7 x^2 + 4 x^3 - x^4 + 2 x^5 - 4 x^6)/(-1 + 2 x - x^3 + x^4 - x^5 - x^6 + x^7), {x, 0, 20}], x]
%K A290494 nonn
%O A290494 4,1
%A A290494 _Eric W. Weisstein_, Aug 04 2017