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!)
A139584 A triangle of coefficients of A053122 type binomials {x,y},{y,z} and {z,x}, made using A_n Cartan type matrix characteristic polynomials: an(x,n) = CharacteristicPolynomial(M(A_n,n)); f(x,y,n) = Sum[Coefficients(an[x,n)*x^i*y^(n-i),{i,0,n}]; p(x,y,z,n) = f(x,y,n) + f(y,z,n) + f(z,x,n). 1

%I #8 Dec 09 2017 19:43:21

%S 3,5,-2,6,-8,2,7,-20,12,-2,9,-40,42,-16,2,12,-70,112,-72,20,-2,15,

%T -112,252,-240,110,-24,2,17,-168,504,-660,440,-156,28,-2,18,-240,924,

%U -1584,1430,-728,210,-32,2,19,-330,1584,-3432,4004,-2730,1120,-272,36,-2,21,-440,2574,-6864,10010,-8736,4760,-1632,342

%N A triangle of coefficients of A053122 type binomials {x,y},{y,z} and {z,x}, made using A_n Cartan type matrix characteristic polynomials: an(x,n) = CharacteristicPolynomial(M(A_n,n)); f(x,y,n) = Sum[Coefficients(an[x,n)*x^i*y^(n-i),{i,0,n}]; p(x,y,z,n) = f(x,y,n) + f(y,z,n) + f(z,x,n).

%C Row sums are: {3, 3, 0, -3, -3, 0, 3, 3, 0, -3, -3, ...}

%F an(x,n) = CharacteristicPolynomial(M(A_n,n));

%F f[x,y,n) = Sum[Coefficients(an[x,n)*x^i*y^(n-i),{i,0,n}];

%F p(x,y,z,n) = f(x,y,n) + f(y,z,n) + f(z,x,n);

%F Out_n,m = Coefficients(p(x,1,1,n).

%e {3},

%e {5, -2},

%e {6, -8, 2},

%e {7, -20,12, -2},

%e {9, -40, 42, -16, 2},

%e {12, -70, 112, -72, 20, -2},

%e {15, -112, 252, -240, 110, -24, 2},

%e {17, -168, 504, -660, 440, -156, 28, -2},

%e {18, -240, 924, -1584, 1430, -728, 210, -32, 2},

%e {19, -330, 1584, -3432, 4004, -2730, 1120, -272,36, -2},

%e {21, -440, 2574, -6864, 10010, -8736, 4760, -1632, 342, -40, 2}

%t T[n_, m_, d_] := If[ n == m, 2, If[n == m - 1 || n == m + 1, -1, 0]];

%t M[d_] := Table[T[n, m, d], {n, 1, d}, {m, 1, d}]; an[x_, n_] := If[n == 0, 1, CharacteristicPolynomial[M[n], x]]

%t f[x_, y_, n_] := Sum[CoefficientList[an[x, n], x][[i + 1]]*x^i*y^(n - i), {i, 0, Length[CoefficientList[an[x, n], x]] - 1}];

%t Table[ExpandAll[f[x, y, n] + f[y, z, n] + f[x, z, n]], {n, 0, 10}];

%t a = Table[CoefficientList[ExpandAll[f[x, y, n] + f[y, z, n] + f[x, z, n]] /. y -> 1 /. z -> 1, x], {n, 0, 10}]; Flatten[a]

%Y Cf. A053122.

%K uned,sign

%O 1,1

%A _Roger L. Bagula_ and _Gary W. Adamson_, Jun 11 2008

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 August 9 15:15 EDT 2024. Contains 375044 sequences. (Running on oeis4.)