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”).

A179079
Permanent of the n X n matrix whose (i,j)-element is (i+j-1) modulo 3.
3
1, 4, 9, 34, 192, 1032, 6936, 62496, 530712, 5005152, 61710336, 707802624, 8714718720, 133983590400, 1938416832000, 29588291712000, 544216485888000, 9509523337728000, 173318541516288000, 3711395156281344000, 76000261811572224000, 1610876530967703552000, 39351073330327191552000
OFFSET
1,2
LINKS
Eric Weisstein's World of Mathematics, Permanent
MAPLE
A179079 := proc(n) M := Matrix(n, n, (i, j) -> (i+j-1) mod 3) ; LinearAlgebra[Permanent](M) ; end proc: # R. J. Mathar, Jan 04 2011
MATHEMATICA
Permanent[m_List] := With[{v = Array[x, Length[m]]}, Coefficient[Times @@ (m.v), Times @@ v]]; Table[Permanent[Table[Mod[i+j-1, 3], {i, 1, n}, {j, 1, n}]], {n, 1, 25}]
CROSSREFS
Cf. A010551.
Sequence in context: A149136 A358411 A006392 * A084449 A182144 A182723
KEYWORD
nonn
AUTHOR
John W. Layman, Jan 04 2011
STATUS
approved