OFFSET
3,1
COMMENTS
For n >= 7, the visibility polynomial is (1 + 2*x)^n + x + n*x^2*(1 + 2*x)*(3 + 2*x). - Andrew Howroyd, Dec 27 2025
LINKS
Andrew Howroyd, Table of n, a(n) for n = 3..1000
Andrew Howroyd, Visibility polynomial of n-helm graph, Jan 2026.
Eric Weisstein's World of Mathematics, Helm Graph.
Eric Weisstein's World of Mathematics, Visibility Polynomial.
Index entries for linear recurrences with constant coefficients, signature (5,-7,3).
FORMULA
From Andrew Howroyd, Dec 27 2025: (Start)
a(n) = 3^n + 15*n + 1 for n >= 7.
G.f.: x^3*(57 - 126*x - 16*x^2 - 122*x^3 + 296*x^4 - 71*x^5 - 48*x^6)/((1 - x)^2*(1 - 3*x)). (End)
PROG
(PARI) a(n) = if(n < 7, [57, 159, 380, 836][n-2], 3^n + 15*n + 1) \\ Andrew Howroyd, Dec 27 2025
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Eric W. Weisstein, Sep 25 2025
EXTENSIONS
a(13)-a(14) from Eric W. Weisstein, Oct 20 2025
a(15) onward from Andrew Howroyd, Dec 27 2025
STATUS
approved
