A127408 Negative value of coefficient of x^(n-3) in the characteristic polynomial of a certain n X n integer circulant matrix.
18, 144, 625, 1980, 5145, 11648, 23814, 45000, 79860, 134640, 217503, 338884, 511875, 752640, 1080860, 1520208, 2098854, 2850000, 3812445, 5031180, 6558013, 8452224, 10781250, 13621400, 17058600, 21189168, 26120619, 31972500, 38877255
Offset: 3
Examples
The circulant matrix for n = 5 is [1 2 3 4 5] [5 1 2 3 4] [4 5 1 2 3] [3 4 5 1 2] [2 3 4 5 1] The characteristic polynomial of this matrix is x^5 - 5*x^4 -100*x^3 - 625*x^2 - 1750*x - 1875. The coefficient of x^(n-3) is -625, hence a(5) = 625.
References
- Daniel Zwillinger, Ed., "CRC Standard Mathematical Tables and Formulae", 31st Edition, ISBN 1-58488-291, Section 2.6.2.25 (page 141) and Section 2.6.11.3 (page 152).
Links
- Index entries for linear recurrences with constant coefficients, signature (7,-21,35,-35,21,-7,1).
Crossrefs
Programs
-
Magma
[ -Coefficient(CharacteristicPolynomial(Matrix(IntegerRing(), n, n, [< i, j, 1 + (j-i) mod n > : i, j in [1..n] ] )), n-3) : n in [3..31] ] ; // Klaus Brockhaus, Jan 26 2007
-
Magma
[ (n-2) * (n-1) * n^3 * (2*(n-2) + 14) / (2 * Factorial(4)) : n in [3..31] ] ; // Klaus Brockhaus, Jan 26 2007
-
Octave
n * (n+1) * (n+2)^3 * (2*n + 14) / (2 * factorial(4)); % Paul Max Payton, Jan 14 2007
-
PARI
a(n) = {-polcoef(charpoly(matrix(n,n,i,j,(j-i)%n+1),x),n-3)} \\ Klaus Brockhaus, Jan 26 2007
-
PARI
a(n) = {(n^6+2*n^5-13*n^4+10*n^3)/4!} \\ Klaus Brockhaus, Jan 26 2007
Formula
a(n+2) = n*(n+1)*(n+2)^3*(2n+14)/(2 * 4!) for n>=1.
a(n) = (n^6+2*n^5-13*n^4+10*n^3)/4! for n>=3.
G.f.: x^3*(3-x)*(6+8*x+x^2)/(1-x)^7. - Colin Barker, May 13 2012
Extensions
Edited and extended by Klaus Brockhaus, Jan 26 2007
Comments