OFFSET
0,2
COMMENTS
The number of n X n {-1,0,1}-matrices (the same as the number of n X n matrices over GF(3) ).
LINKS
Harry J. Smith, Table of n, a(n) for n = 0..45
Robert Corless and Steven Thornton, The Bohemian Eigenvalue Project, 2017 poster.
Joël Gay and Vincent Pilaud, The weak order on Weyl posets, arXiv:1804.06572 [math.CO], 2018.
FORMULA
a(n) = [x^n] 1/(1 - 3^n*x). - Ilya Gutkovskiy, Oct 10 2017
From Geoffrey Critzer, Dec 02 2024: (Start)
MAPLE
for n from 1 to 15 do printf(`%d, `, 3^(n^2)) od:
MATHEMATICA
Array[3^(#^2) &, 9] (* Michael De Vlieger, Jul 12 2018 *)
PROG
(PARI) { for (n=0, 45, write("b060722.txt", n, " ", 3^(n^2)); ) } \\ Harry J. Smith, Jul 10 2009
(PARI) a(n) = 3^(n^2); \\ Joerg Arndt, Feb 23 2014
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Avi Peretz (njk(AT)netvision.net.il), Apr 21 2001
EXTENSIONS
More terms from James A. Sellers, Apr 24 2001
a(0) = 1 added by N. J. A. Sloane, Nov 23 2007
STATUS
approved