Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
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!)
A330087 Permanent of a square matrix M(n) whose general element M_{i,j} is defined by i*prime(j). 1
1, 2, 24, 1080, 120960, 33264000, 15567552000, 12967770816000, 15768809312256000, 29377291748732928000, 85194146071325491200000, 319563241913541917491200000, 1702632952915351336393113600000, 11797543730750469409867884134400000, 99429698562764956186366527484723200000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
det(M(0)) = 1, det(M(1)) = 2 and det(M(n)) = 0 for n > 1.
The trace of the matrix M(n) is A014285(n).
The antitrace of the matrix M(n) is A014148(n).
The antidiagonal of the matrix M(n) is the n-th row of the triangle A309131.
LINKS
EXAMPLE
For n = 1 the matrix M(1) is
2
with permanent a(1) = 2.
For n = 2 the matrix M(2) is
2, 3
4, 6
with permanent a(2) = 24.
For n = 3 the matrix M(3) is
2, 3, 5
4, 6, 10
6, 9, 15
with permanent a(3) = 1080.
MAPLE
with(LinearAlgebra):
a:= n-> `if`(n=0, 1, Permanent(Matrix(n, (i, j)-> i*ithprime(j)))):
seq(a(n), n=0..14); # Alois P. Heinz, Dec 04 2019
MATHEMATICA
M[i_, j_, n_] := i*Prime[j]; a[n_] := If[n==0, 1, Permanent[Table[M[i, j, n], {i, n}, {j, n}]]]; Array[a, 14, 0]
PROG
(PARI) a(n) = matpermanent(matrix(n, n, i, j, i*prime(j))); \\ Michel Marcus, Dec 04 2019
CROSSREFS
Sequence in context: A129622 A268311 A362091 * A357827 A307157 A354557
KEYWORD
nonn
AUTHOR
Stefano Spezia, Dec 01 2019
EXTENSIONS
a(0) = 1 prepended by Michel Marcus, Dec 04 2019
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 August 18 11:57 EDT 2024. Contains 375267 sequences. (Running on oeis4.)