OFFSET
0,3
COMMENTS
The n-antiprism graph is defined for n >= 3. The sequence has been extended to n = 0 using the formula. - Andrew Howroyd, Jun 09 2025
LINKS
Andrew Howroyd, Table of n, a(n) for n = 0..1000
Eric Weisstein's World of Mathematics, Antiprism Graph.
Eric Weisstein's World of Mathematics, Minimal Edge Cut.
Index entries for linear recurrences with constant coefficients, signature (5,-10,10,-5,1).
FORMULA
From Andrew Howroyd, Jun 09 2025: (Start)
a(n) = 1 + 2*n*(n-1) + n^2*(n-1)*(2*n-1)/6.
a(n) = (2*n^4 - 3*n^3 + 13*n^2 - 12*n + 6)/6. (End)
From Elmo R. Oliveira, Sep 03 2025: (Start)
G.f.: (1 - 4*x + 12*x^2 - 7*x^3 + 6*x^4)/(1-x)^5.
E.g.f.: (6 + 18*x^2 + 9*x^3 + 2*x^4)*exp(x)/6.
a(n) = 5*a(n-1) - 10*a(n-2) + 10*a(n-3) - 5*a(n-4) + a(n-5). (End)
MATHEMATICA
Table[(6 - 12 n + 13 n^2 - 3 n^3 + 2 n^4)/6, {n, 0, 20}] (* Eric W. Weisstein, Oct 01 2025 *)
LinearRecurrence[{5, -10, 10, -5, 1}, {1, 1, 7, 28, 81}, 20] (* Eric W. Weisstein, Oct 01 2025 *)
CoefficientList[Series[(-1 + 4 x - 12 x^2 + 7 x^3 - 6 x^4)/(-1 + x)^5, {x, 0, 20}], x] (* Eric W. Weisstein, Oct 01 2025 *)
PROG
(PARI) a(n) = (2*n^4 - 3*n^3 + 13*n^2 - 12*n + 6)/6 \\ Andrew Howroyd, Jun 09 2025
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Eric W. Weisstein, Dec 11 2024
EXTENSIONS
a(0)-a(2) prepended and a(7) onwards from Andrew Howroyd, Jun 09 2025
STATUS
approved
