OFFSET
0,3
COMMENTS
Each row is palindromic (see the Stevanovic and Mandrescu references).
Row n (n >= 0) contains 4n+1 entries.
Sum of entries in row n = A235118(n).
In the Maple program, P(n) gives the independence polynomial of the graph g_n.
LINKS
E. Mandrescu, Unimodality of some independence polynomials via their palindromicity, Australasian J. of Combinatorics, 53, 2012, 77-82.
D. Stevanovic, Graphs with palindromic independence polynomial, Graph Theory Notes of New York, 34, 1998, 31-36.
FORMULA
Generating polynomial P(n) of row n (i.e., the independence polynomial of the graph g_n) satisfies the recurrence relation P(n) = (1 + x)^2*(1 + 3x + x^2)P(n-1) + x(1 + x)^6 *P(n-2); P(0)=1; P(1)=(1 + 4x + x^2)*(1 + x)^2.
EXAMPLE
Triangle begins:
1;
1,6,10,6,1;
1,12,54,124,162,124,54,12,1;
1,18,134,556,1451,2530,3036,2530,1451,556,134,18,1;
MAPLE
P := proc (n) option remember: if n = 0 then 1 elif n = 1 then sort(expand((1+x)^2*(1+4*x+x^2))) else sort(expand((1+x)^2*(1+3*x+x^2)*P(n-1) +x*(1+x)^6*P(n-2))) end if end proc: for n from 0 to 5 do seq(coeff(P(n), x, i), i = 0 .. 4*n) end do; # yields sequence in triangular form
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Emeric Deutsch, Jan 14 2014
STATUS
approved