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 A286879 #36 Feb 16 2025 08:33:45 %S A286879 2,5,28,66,140,272,489,828,1339,2088,3160,4662,6726,9512,13211,18048, %T A286879 24285,32224,42210,54634,69936,88608,111197,138308,170607,208824, %U A286879 253756,306270,367306,437880,519087,612104,718193,838704,975078,1128850,1301652,1495216,1711377 %N A286879 Number of minimal dominating sets in the n-Andrásfai graph. %H A286879 Vincenzo Librandi, <a href="/A286879/b286879.txt">Table of n, a(n) for n = 1..1000</a> %H A286879 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/AndrasfaiGraph.html">Andrásfai Graph</a> %H A286879 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/MinimalDominatingSet.html">Minimal Dominating Set</a> %H A286879 <a href="/index/Rec#order_06">Index entries for linear recurrences with constant coefficients</a>, signature (6,-15, 20,-15,6,-1). %F A286879 From _Eric W. Weisstein_, Aug 21 2017: (Start) %F A286879 a(n) = (3*n - 1)*(n^4 - 13*n^3 + 164*n^2 - 572*n + 960)/120 for n > 3. %F A286879 a(n) = 6*a(n-1) - 15*a(n-2) + 20*a(n-3) - 15*a(n-4) + 6*a(n-5) - a(n-6) for n > 9. %F A286879 G.f.: (x (2 - 7 x + 28 x^2 - 67 x^3 + 94 x^4 - 75 x^5 + 29 x^6 + x^7 - 2 x^8))/(-1 + x)^6. %F A286879 (End) %p A286879 A286879:=n->(3*n - 1)*(n^4 - 13*n^3 + 164*n^2 - 572*n + 960)/120: 2,5,28,seq(A286879(n), n=4..100); # _Wesley Ivan Hurt_, Nov 30 2017 %t A286879 Table[Piecewise[{{2, n == 1}, {5, n == 2}, {28, n == 3}}, (3 n - 1) (n^4 - 13 n^3 + 164 n^2 - 572 n + 960)/120], {n, 20}] %t A286879 Join[{2, 5, 28}, LinearRecurrence[{6, -15, 20, -15, 6, -1}, {66, 140, 272, 489, 828, 1339}, 20]] (* _Eric W. Weisstein_, Aug 21 2017 *) %t A286879 CoefficientList[Series[(2 - 7 x + 28 x^2 - 67 x^3 + 94 x^4 - 75 x^5 + 29 x^6 + x^7 - 2 x^8)/(-1 + x)^6, {x, 0, 20}], x] (* _Eric W. Weisstein_, Aug 21 2017 *) %o A286879 (Magma) [2,5,28] cat [(3*n-1)*(n^4-13*n^3+164*n^2-572*n+ 960)/120: n in [4..40]]; // _Vincenzo Librandi_, Sep 03 2017 %Y A286879 Cf. A285272, A290587, A291053. %K A286879 nonn,easy %O A286879 1,1 %A A286879 _Eric W. Weisstein_, Aug 02 2017 %E A286879 a(10)-a(20) from _Andrew Howroyd_, Aug 19 2017 %E A286879 a(21) and higher from _Eric W. Weisstein_, Aug 21 2017