login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A158200 A coefficients of characteristic polynomials of binomial modulo two matrices times their doubled transposes: t(n,m,d)=If[ m <= n, Mod[Binomial[n, m], 2], 0]; M(d)=*Transpose[t(n,m,d)].t(n,m,d).Transpose[t(n,m,d)]. 0
1, 1, -1, 1, -2, 1, 1, -7, 7, -1, 1, -8, 14, -8, 1, 1, -13, 46, -46, 13, -1, 1, -18, 99, -196, 99, -18, 1, 1, -37, 279, -763, 763, -279, 37, -1, 1, -38, 316, -1042, 1526, -1042, 316, -38, 1, 1, -43, 486, -2266, 4884, -4884, 2266, -486, 43, -1, 1, -48, 677, -4144, 12122 (list; table; graph; refs; listen; history; internal format)
OFFSET

0,5

COMMENTS

Row sums are:

{1, 0, 0, 0, 0, 0, -32, 0, 0, 0, 0,...},

Example matrix:

M(3)={{2, 1, 4},

{1, 2, 4},

{1, 1, 3}}

FORMULA

t(n,m,d)=If[ m <= n, Mod[Binomial[n, m], 2], 0];

M(d)=*Transpose[t(n,m,d)].t(n,m,d).Transpose[t(n,m,d)];

out_(n,m)=coefficients(characteristicpolynomial(M(n),x),x)

EXAMPLE

{1},

{1, -1},

{1, -2, 1},

{1, -7, 7, -1},

{1, -8, 14, -8, 1},

{1, -13, 46, -46, 13, -1},

{1, -18, 99, -196, 99, -18, 1},

{1, -37, 279, -763, 763, -279, 37, -1},

{1, -38, 316, -1042, 1526, -1042, 316, -38, 1},

{1, -43, 486, -2266, 4884, -4884, 2266, -486, 43, -1},

{1, -48, 677, -4144, 12122, -17216, 12122, -4144, 677, -48, 1}

MATHEMATICA

Clear[M, T, d, a, x, a0];

T[n_, m_, d_] := If[ m <= n, Mod[Binomial[n, m], 2], 0];

M[d_] := Transpose[Table[T[n, m, d], {n, 1, d}, {m, 1, d}]].Table[T[n, m, d], {n, 1, d}, {m, 1, d}].Transpose[Table[T[n, m, d], {n, 1, d}, {m, 1, d}]];

a0 = Table[M[d], {d, 1, 10}];

Table[Det[M[d]], {d, 1, 10}];

Table[CharacteristicPolynomial[M[d], x], {d, 1, 10}];

a = Join[{{1}}, Table[CoefficientList[ Expand[CharacteristicPolynomial[M[n], x]], x], {n, 1, 10}]];

Flatten[a]

Join[{1}, Table[Apply[Plus, CoefficientList[ Expand[CharacteristicPolynomial[M[n], x]], x]], {n, 1, 10}]];

CROSSREFS

Sequence in context: A039760 A156882 A122021 * A166345 A015110 A128596

Adjacent sequences:  A158197 A158198 A158199 * A158201 A158202 A158203

KEYWORD

sign,tabl,uned

AUTHOR

Roger L. Bagula (rlbagulatftn(AT)yahoo.com), Mar 13 2009

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 14 16:22 EST 2012. Contains 205635 sequences.