The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A349099 a(n) is the permanent of the n X n matrix M(n) defined as M(n)[i,j] = i*j (mod n + 1). 1
1, 1, 5, 32, 1074, 12600, 1525292, 34078720, 4072850100, 263459065600, 106809546673488, 2254519427530752, 3172225081523720416, 210351382651302645760, 45654014718074873700000, 11122845097194072534155264, 18156837198112938091803999360, 795289872611524024920215715840 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Det(M(n)) = 0 iff n = 4 or n > 5.
Rank(M(n)) = A088922(n+1).
Tr(M(n)) = A048153(n+1).
LINKS
EXAMPLE
See A352620 for the examples of matrix M(n).
MAPLE
a:= n-> `if`(n=0, 1, LinearAlgebra[Permanent](
Matrix(n, (i, j)-> (i*j) mod (n+1)))):
seq(a(n), n=0..16); # Alois P. Heinz, Mar 25 2022
MATHEMATICA
Join[{1}, Table[Permanent[Table[Mod[j*Table[i, {i, n}], n+1], {j, n}]], {n, 17}]]
PROG
(PARI) a(n) = matpermanent(matrix(n, n, i, j, (i*j)%(n+1))); \\ Michel Marcus, Mar 26 2022
CROSSREFS
Cf. A352620.
Sequence in context: A125709 A363314 A203112 * A174471 A275233 A359971
KEYWORD
nonn
AUTHOR
Stefano Spezia, Mar 25 2022
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 12 15:44 EDT 2024. Contains 373332 sequences. (Running on oeis4.)