login
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
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
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Dec 01 2016
STATUS
approved