login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A123969 A triangular sequence from a Beraha type recursive polynomial using 5 X 5 n centered tridiagonal matrices with chromatic polynomial central roots to its characteristic polynomial. 0

%I #10 Dec 28 2014 17:46:13

%S -1,-1,1,0,4,-6,-4,11,-6,1,6,-41,75,-60,74,-119,57,64,-93,47,-11,1,

%T 144,-492,886,-1076,489,618,-1063,1154,-1672,1618,-410,-682,785,-392,

%U 108,-16,1,744,-2567,3782,-1075,-6736,18095,-29241,29006,-12952,-3601,11554,-18942,24467,-17741,2907,6473,-6678,3357,-1026

%N A triangular sequence from a Beraha type recursive polynomial using 5 X 5 n centered tridiagonal matrices with chromatic polynomial central roots to its characteristic polynomial.

%C Recursive polynomial type from a classic paper related to Tutte-Beraha constants and the four color graph/ topology problem.

%D Limits of zeros of recursively defined polynomials, S. Beraha, J. Kahane and N. J. Weiss, Proc Natl Acad Sci U S A. 1975 November; 72(11): 4209.

%F M(n)={{n, -1, 0, 0, 0}, {-1, n, -1, 0, 0}, {0, -1, n, -1, 0}, {0, 0, -1, n, -1}, q(n,x)=CharacteristicPolynomial(M(n),x) p(k, x) = -Sum[q(n, x)*p(k - n, x), {n, 1, k - 1}]

%e Triangle begins:

%e {-1},

%e {-1, 1},

%e {0, 4, -6, -4, 11, -6, 1},

%e {6, -41,75, -60, 74, -119, 57, 64, -93, 47, -11, 1},

%e {144, -492, 886, -1076, 489, 618, -1063, 1154, -1672, 1618, -410, -682, 785, -392, 108, -16, 1}

%t M[n_] := {{n, -1, 0, 0, 0}, {-1, n, -1, 0, 0}, {0, -1, n, -1, 0}, {0, 0, -1, n, -1}, {0, 0, 0, -1, n}}; q[n_, x_] = Factor[CharacteristicPolynomial[M[n], x]]; p[0, x] = -1; p[1, x] = x - 1; p[k_, x_] := p[k, x] = -Sum[q[n, x]*p[k - n, x], {n, 1, k - 1}]; Table[Expand[p[n, x]], {n, 0, 10}] w = Table[CoefficientList[p[n, x], x], {n, 0, 10}]; Flatten[w]

%K uned,tabf,sign

%O 1,5

%A _Gary W. Adamson_ and _Roger L. Bagula_, Oct 29 2006

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 22 00:58 EDT 2024. Contains 374478 sequences. (Running on oeis4.)