OFFSET
3,3
COMMENTS
Rotations and reflections of placements are counted. If they are to be ignored see A239575.
a(n) is the coefficient of x^5 in the independence polynomial of the (n-1)-triangular grid graph. - Eric W. Weisstein, Mar 27 2026
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 3..1000
Eric Weisstein's World of Mathematics, Independence Polynomial.
Eric Weisstein's World of Mathematics, Triangular Grid Graph.
Index entries for linear recurrences with constant coefficients, signature (11,-55,165,-330,462,-462,330,-165,55,-11,1)
FORMULA
a(n) = (n -3) * (n -4) * (n^8 +12*n^7 -58*n^6 -860*n^5 +2141*n^4 +23728*n^3 -61316*n^2 -244928*n +770880)/3840.
G.f.: -3*x^5*(40*x^8-185*x^7+198*x^6+213*x^5-243*x^4-638*x^3+687*x^2+234*x+9) / (x-1)^11. - Colin Barker, Mar 22 2014
a(n) = 11*a(n-1)-55*a(n-2)+165*a(n-3)-330*a(n-4)+462*a(n-5)-462*a(n-6)+330*a(n-7)-165*a(n-8)+55*a(n-9)-11*a(n-10)+a(n-11). - Eric W. Weisstein, Mar 27 2026
MATHEMATICA
CoefficientList[Series[-3 x^2 (40 x^8 - 185 x^7 + 198 x^6 + 213 x^5 - 243 x^4 - 638 x^3 + 687 x^2 + 234 x + 9)/(x - 1)^11, {x, 0, 40}], x] (* Vincenzo Librandi, Mar 23 2014 *)
Table[(n - 4) (n - 3) (n^8 + 12 n^7 - 58 n^6 - 860 n^5 + 2141 n^4 + 23728 n^3 - 61316 n^2 - 244928 n + 770880)/3840, {n, 3, 20}] (* Eric W. Weisstein, Mar 27 2026 *)
LinearRecurrence[{11, -55, 165, -330, 462, -462, 330, -165, 55, -11, 1}, {0, 0, 27, 999, 11565, 74811, 342042, 1239525, 3799488, 10259640, 25076952}, 20] (* Eric W. Weisstein, Mar 27 2026 *)
PROG
(PARI) concat([0, 0], Vec(-3*x^5*(40*x^8-185*x^7+198*x^6+213*x^5-243*x^4-638*x^3+687*x^2+234*x+9)/(x-1)^11 + O(x^100))) \\ Colin Barker, Mar 22 2014
(Magma) [(n^2-7*n+12)*(n^8+12*n^7-58*n^6-860*n^5+2141*n^4 +23728*n^3-61316*n^2-244928*n+770880)/3840: n in [3..40]]; // Vincenzo Librandi, Mar 23 2014
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Heinrich Ludwig, Mar 22 2014
STATUS
approved
