login
A389176
Number of mutual-visibility sets in the n-antiprism graph.
1
63, 177, 396, 912, 1583, 3145, 4759, 8596, 11892, 20113, 26118, 42064, 52131, 80785, 96629, 145084, 168816, 246801, 280960, 401424, 449007, 628761, 693251, 953668, 1039060, 1406833, 1517658, 2025616, 2166963, 2854945, 3032481, 3948268, 4168256, 5368561, 5637876, 7189392, 7515535, 9496041
OFFSET
3,1
COMMENTS
Mutual-visibility sets in the n-antiprism graph have at most 6 vertices.
LINKS
Eric Weisstein's World of Mathematics, Antiprism Graph.
Eric Weisstein's World of Mathematics, Visibility Polynomial.
Index entries for linear recurrences with constant coefficients, signature (1,6,-6,-15,15,20,-20,-15,15,6,-6,-1,1).
FORMULA
From Andrew Howroyd, Jan 12 2026: (Start)
a(n) = (7*n^6 + 210*n^5 + 1660*n^4 + 3960*n^3 + 11968*n^2 - 24960*n + 5760)/5760 for even n.
a(n) = (7*n^6 + 165*n^5 + 1450*n^4 + 7470*n^3 - 18737*n^2 + 55725*n + 5760)/5760 for odd n >= 5.
G.f.: x^3*(63 + 114*x - 159*x^2 - 168*x^3 + 302*x^4 + 176*x^5 - 387*x^6 - 75*x^7 + 242*x^8 + 19*x^9 - 74*x^10 - 9*x^11 + 11*x^12 + x^13)/((1 - x)^7*(1 + x)^6). (End)
a(n) = a(n-1)+6*a(n-2)-6*a(n-3)-15*a(n-4)+15*a(n-5)+20*a(n-6)-20*a(n-7)-15*a(n-8)+15*a(n-9)+6*a(n-10)-6*a(n-11)-a(n-12)+a(n-13) for n > 16. - Eric W. Weisstein, Feb 16 2026
MATHEMATICA
Join[{63}, Table[1 + (n (30765 - 6769 n + 11430 n^2 + 3110 n^3 + 375 n^4 + 14 n^5 + 15 (-1)^n (-5379 + 2047 n - 234 n^2 + 14 n^3 + 3 n^4)))/11520, {n, 4, 20}]] (* Eric W. Weisstein, Feb 16 2026 *)
Join[{63}, LinearRecurrence[{1, 6, -6, -15, 15, 20, -20, -15, 15, 6, -6, -1, 1}, {177, 396, 912, 1583, 3145, 4759, 8596, 11892, 20113, 26118, 42064, 52131, 80785}, 20]] (* Eric W. Weisstein, Feb 16 2026 *)
CoefficientList[Series[(-63 - 114 x + 159 x^2 + 168 x^3 - 302 x^4 - 176 x^5 + 387 x^6 + 75 x^7 - 242 x^8 - 19 x^9 + 74 x^10 + 9 x^11 - 11 x^12 - x^13)/((-1 + x)^7 (1 + x)^6), {x, 0, 20}], x] (* Eric W. Weisstein, Feb 16 2026 *)
PROG
(PARI) a(n) = if(n==3, -1) + if(n%2, 7*n^6 + 165*n^5 + 1450*n^4 + 7470*n^3 - 18737*n^2 + 55725*n + 5760, 7*n^6 + 210*n^5 + 1660*n^4 + 3960*n^3 + 11968*n^2 - 24960*n + 5760)/5760; \\ Andrew Howroyd, Jan 12 2026
CROSSREFS
Cf. A389184.
Sequence in context: A330433 A044395 A044776 * A077263 A098140 A008895
KEYWORD
nonn,easy
AUTHOR
Eric W. Weisstein, Sep 25 2025
EXTENSIONS
a(26) from Eric W. Weisstein, Oct 20 2025
a(27) onward from Andrew Howroyd, Jan 12 2026
STATUS
approved