cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A086243 Number of invertible (-1,0,1) n X n matrices having (Tij=-Tji; i

Original entry on oeis.org

2, 14, 68, 604, 4312
Offset: 1

Views

Author

Wouter Meeussen, Aug 28 2003

Keywords

Comments

A set of matrices closed under exponentiation.
The powers T^k are themselves all members of the set that is counted.

Crossrefs

Cf. A072110.

Programs

  • Mathematica
    (* trimatsig[ ] : see A072110 *) n=3; it=triamatsig/@(-1+IntegerDigits[Range[0, -1+3^(n(n+1)/2)], 3, n(n+1)/2]); result[n]=Cases[it, (q_?MatrixQ)/; Det[q]=!=0 && And@@Table[Union[Flatten[{(temp=MatrixPower[q, k]), {-1, 0, 1}}]]==={-1, 0, 1} && ((1-IdentityMatrix[n])temp===-Transpose[(1-IdentityMatrix[n])temp]), {k, 12}]]; Length[%]