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!)
A204264 Permanent of the n-th principal submatrix of A051125. 2
1, 1, 6, 81, 2004, 78745, 4509474, 354647965, 36682768168, 4828756380525, 788293972077550, 156301383568936265, 36999739721382614268, 10307298862866331060865, 3338015288607791489356218, 1243533799932150850942393845, 528053459248835561744374233168 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
Discussion at dxdy.ru, Permanent of a matrix, (in Russian) (2023).
FORMULA
a(n) = f(n, n, n, 0) for n >= 0 where f(n, q, m, x) = g(n, q, m, x) + f(n, q-1, m, m - q + 1) - g(n, q, m, m - q + 1) for n >= 0, q > 0, m >= 0 with f(n, 0, m, x) = n!*x^n for n >= 0, m >= 0 and where g(n, q, m, x) = Integral (n-q)^2*f(n-1, q, m, x) dx for n > 0, q > 0, m > 0 (formula due to user with the nickname Null on a scientific forum dxdy.ru). - Mikhail Kurkov, Aug 03 2023 [verification needed]
a(n) ~ c * d^n * n^(2*n + 1/2), where d = 0.2311615029480675454906706378647589... and c = 6.0549338839461696639515756882139886... - Vaclav Kotesovec, Aug 05 2023
MAPLE
with(LinearAlgebra):
a:= n-> `if`(n=0, 1, Permanent(Matrix(n, ()-> max(args)))):
seq(a(n), n=0..16); # Alois P. Heinz, Nov 14 2016
MATHEMATICA
f[i_, j_] := Max[i, j];
m[n_] := Table[f[i, j], {i, 1, n}, {j, 1, n}]
TableForm[m[8]] (* 8x8 principal submatrix *)
Flatten[Table[f[i, n + 1 - i],
{n, 1, 12}, {i, 1, n}]] (* A051125 *)
Permanent[m_] :=
With[{a = Array[x, Length[m]]},
Coefficient[Times @@ (m.a), Times @@ a]];
Table[Permanent[m[n]], {n, 1, 12}] (* A204264 *)
PROG
(PARI) a(n)=if(n==0, 1, my(v1, x='x); v1=vector(n+1, i, i--; i!*x^i); for(i=1, n, for(j=i, n, my(A=intformal((j-i)^2*v1[j])); v1[j+1] = A + subst(v1[j+1] - A, x, n - i + 1))); v1[n+1]) \\ Mikhail Kurkov, Aug 03 2023 [verification needed]
CROSSREFS
Sequence in context: A138457 A252821 A371765 * A076282 A121790 A279203
KEYWORD
nonn,changed
AUTHOR
Clark Kimberling, Jan 14 2012
EXTENSIONS
a(0)=1 prepended and more terms added by Alois P. Heinz, Nov 14 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 23 09:48 EDT 2024. Contains 371905 sequences. (Running on oeis4.)