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!)
A278926 a(n) = permanent M_n where M_n is the n X n matrix m(i,j) = i^4 + j^4. 4
1, 2, 353, 561608, 4341274884, 111107400842568, 7493918659070379300, 1139021252689549522419840, 348457223545199873458486125120, 196982631587037086047232203674775680, 192443334239172066295878807351087122210880, 307899710379447999264505625949360598523097530880 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) ~ c * d^n * n!^5 / n^2, where d = 11.83108... and c = 0.68284...
MAPLE
with(LinearAlgebra):
a:= n-> `if`(n=0, 1, Permanent(Matrix(n, (i, j)-> i^4+j^4))):
seq(a(n), n=0..16);
MATHEMATICA
Flatten[{1, Table[Permanent[Table[i^4+j^4, {i, 1, n}, {j, 1, n}]], {n, 1, 15}]}]
PROG
(PARI) {a(n) = matpermanent(matrix(n, n, i, j, i^4+j^4))}
for(n=0, 20, print1(a(n), ", ")) \\ Vaclav Kotesovec, Dec 21 2018
CROSSREFS
Sequence in context: A179959 A024350 A012669 * A187523 A172860 A164700
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Dec 01 2016
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 April 18 16:22 EDT 2024. Contains 371780 sequences. (Running on oeis4.)