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!)
A278845 a(n) = permanent M_n where M_n is the n X n matrix m(i,j) = (i+j)^2. 7
1, 4, 145, 19016, 6176676, 4038562000, 4664347807268, 8698721212922496, 24535712762777208384, 99585504924929052560640, 559305193643176161735904320, 4211594966980674975033969246720, 41428564066728305721531962537124096, 520897493876353116313789796095643304960 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) ~ c * d^n * (n!)^3 / n, where d = 6.14071825... and c = 1.79385445... - Vaclav Kotesovec, Aug 12 2021
MAPLE
with(LinearAlgebra):
a:= n-> `if`(n=0, 1, Permanent(Matrix(n, (i, j)-> (i+j)^2))):
seq(a(n), n=0..16); # Vaclav Kotesovec, Nov 29 2016, after Alois P. Heinz
MATHEMATICA
Flatten[{1, Table[Permanent[Table[(i+j)^2, {i, 1, n}, {j, 1, n}]], {n, 1, 15}]}]
PROG
(PARI) {a(n) = matpermanent(matrix(n, n, i, j, (i+j)^2))}
for(n=0, 20, print1(a(n), ", ")) \\ Vaclav Kotesovec, Aug 09 2021
CROSSREFS
Sequence in context: A343697 A030450 A041629 * A159197 A246961 A331868
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Nov 29 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 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)