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!)
A085905 Permanent of the symmetric n X n matrix M defined by M(i,j) = lcm(i,j) for 1 <= i,j <= n. 1
1, 6, 144, 5952, 772560, 73664640, 29745273600, 8715934402560, 5068085799813120, 2756328707949465600, 4581860819083475558400, 2696083278990328597708800, 7844679216026128507826995200 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
a(2)=6 since the 2 by 2 matrix A with rows [1,2],[2,2] has permanent 1*2+2*2=6.
MAPLE
with(linalg): a:=(i, j)->lcm(i, j): seq(permanent(matrix(n, n, a)), n=1..14); # Emeric Deutsch, Feb 08 2005
MATHEMATICA
a[n_] := Permanent[Table[LCM[i, j], {i, 1, n}, {j, 1, n}]]; Table[an = a[n]; Print["a(", n, ") = ", an]; an, {n, 1, 14}] (* Jean-François Alcover, Jan 07 2016 *)
PROG
(PARI) a(n)=matpermanent(matrix(n, n, r, c, lcm(r, c)));
vector(23, n, a(n)) \\ Joerg Arndt, Aug 15 2019
CROSSREFS
Sequence in context: A208230 A010043 A270504 * A203978 A090443 A307416
KEYWORD
nonn
AUTHOR
Yuval Dekel (dekelyuval(AT)hotmail.com), Aug 16 2003
EXTENSIONS
More terms from Emeric Deutsch, Feb 08 2005
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 March 28 17:42 EDT 2024. Contains 371254 sequences. (Running on oeis4.)