login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A060721
Singular n X n matrices over GF(7).
2
1, 385, 6569479, 5421836400001, 218857429741036363207, 432771509734663800164593788001, 41931064368881878511703371604583698172807
OFFSET
1,2
LINKS
FORMULA
For n >= 1, a(n) = 7^(n^2) - A053293(n) = 7^(n^2) - (7^n - 1)*(7^n - 7)*...*(7^n - 7^(n-1)).
MAPLE
for n from 1 to 15 do printf(`%d, `, 7^(n^2) - product(7^n-7^j, j=0..n-1)) od:
PROG
(PARI) a(n)={7^(n^2) - prod(j=0, n - 1, 7^n - 7^j)} \\ Harry J. Smith, Jul 10 2009
CROSSREFS
Cf. A053293.
Sequence in context: A264421 A063390 A130612 * A116316 A213115 A277988
KEYWORD
nonn
AUTHOR
Avi Peretz (njk(AT)netvision.net.il), Apr 21 2001
EXTENSIONS
More terms from James A. Sellers, Apr 24 2001
STATUS
approved