The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A080018 Triangle of coefficients of polynomials P(n; x) = Permanent(M), where M=[m(i,j)] is n X n matrix defined by m(i,j)=x if -1<=i-j<=1 else m(i,j)=1. 7

%I #21 Jan 06 2016 11:50:00

%S 1,0,1,0,0,2,0,1,2,3,1,2,10,6,5,4,20,28,44,16,8,29,104,207,180,151,36,

%T 13,206,775,1288,1407,830,437,76,21,1708,6140,10366,10384,7298,3100,

%U 1138,152,34,15702,55427,91296,92896,63140,31278,10048,2744,294,55

%N Triangle of coefficients of polynomials P(n; x) = Permanent(M), where M=[m(i,j)] is n X n matrix defined by m(i,j)=x if -1<=i-j<=1 else m(i,j)=1.

%D J. Riordan, The enumeration of permutations with three-ply staircase restrictions, unpublished memorandum, Bell Telephone Laboratories, Murray Hill, NJ, Oct 1963. See Table 1. - _N. J. A. Sloane_, Aug 27 2013

%H Alois P. Heinz, <a href="/A080018/b080018.txt">Rows n = 0..20, flattened</a>

%e 1;

%e 0, 1;

%e 0, 0, 2;

%e 0, 1, 2, 3;

%e 1, 2, 10, 6, 5;

%e 4, 20, 28, 44, 16, 8;

%e ...

%e P(4; x) = Permanent(MATRIX([[x, x, 1, 1], [x, x, x, 1], [1, x, x, x], [1, 1, x, x]])) = 1+2*x+10*x^2+6*x^3+5*x^4.

%p with(LinearAlgebra):

%p T:= proc(n) option remember; local p;

%p if n=0 then 1 else

%p p:= Permanent(Matrix(n, (i,j)-> `if`(abs(i-j)<2, x, 1)));

%p seq(coeff(p, x, i), i=0..n)

%p fi

%p end:

%p seq(T(n), n=0..10); # _Alois P. Heinz_, Jul 03 2013

%t t[0] = {1}; t[n_] := CoefficientList[Permanent[Array[If[Abs[#1 - #2] < 2, x, 1]&, {n, n}]], x]; Table[t[n], {n, 0, 10}] // Flatten (* _Jean-François Alcover_, Jan 24 2014, after _Alois P. Heinz_ *)

%Y Row sums = A000142, first column = A001883, second column = A001884, third column = A001885, fourth column = A001886.

%Y Main diagonal and lower diagonal give: A000045(n+1), A178523. - _Alois P. Heinz_, Jul 03 2013

%K nonn,tabl

%O 0,6

%A _Vladeta Jovovic_, _Vladimir Baltic_, Jan 20 2003

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 June 5 01:34 EDT 2024. Contains 373102 sequences. (Running on oeis4.)