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!)
A145894 Triangle read by rows: T(n,k) is the number of permutations p of {1,2,...,n} such that j and p(j) are of the same parity for k values of j (0<=k<=n). 8
1, 0, 1, 1, 0, 1, 0, 4, 0, 2, 4, 0, 16, 0, 4, 0, 36, 0, 72, 0, 12, 36, 0, 324, 0, 324, 0, 36, 0, 576, 0, 2592, 0, 1728, 0, 144, 576, 0, 9216, 0, 20736, 0, 9216, 0, 576, 0, 14400, 0, 115200, 0, 172800, 0, 57600, 0, 2880, 14400, 0, 360000, 0, 1440000, 0, 1440000, 0, 360000, 0, 14400 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,8
COMMENTS
Mirror image of A145893.
Without the 0's, it is the triangle of A134434.
Sum of entries in row n = n! = A000142(n).
T(n,n) = A010551(n).
Lower diagonals give: A226282, A226283, A226284, A226285, A226286. - Alois P. Heinz, May 29 2014
LINKS
FORMULA
T(2n,2k) = [n!*C(n,k)]^2; T(2n+1,2k+1) = [(n+1)!*C(n,k)]^2/(k+1); elsewhere T(n,k)=0.
EXAMPLE
T(3,1) = 4 because we have 132, 312, 213 and 231.
Triangle starts:
1;
0, 1;
1, 0, 1;
0, 4, 0, 2;
4, 0, 16, 0, 4;
0, 36, 0, 72, 0, 12;
36, 0, 324, 0, 324, 0, 36;
MAPLE
T:=proc(n, k) if `mod`(n, 2) = 0 and `mod`(k, 2) = 0 then factorial((1/2)*n)^2*binomial((1/2)*n, (1/2)*k)^2 elif `mod`(n, 2) = 1 and `mod`(k, 2) = 1 then 2*factorial((1/2)*n+1/2)^2*binomial((1/2)*n-1/2, (1/2)*k-1/2)^2/(k+1) else 0 end if end proc: for n from 0 to 10 do seq(T(n, k), k=0..n) end do; # yields sequence in triangular form
MATHEMATICA
T[n_, k_] := Which[EvenQ[n] && EvenQ[k], (n/2)!^2*Binomial[n/2, k/2]^2, OddQ[n] && OddQ[k], (2*(n/2+1/2)!^2*Binomial[n/2-1/2, k/2-1/2]^2)/(k+1), True, 0]; Table[T[n, k], {n, 0, 10}, {k, 0, n}] // Flatten (* Jean-François Alcover, Feb 19 2017, translated from Maple *)
CROSSREFS
Sequence in context: A323982 A279415 A201399 * A366889 A359589 A021881
KEYWORD
nonn,tabl
AUTHOR
Emeric Deutsch, Nov 30 2008
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 May 1 16:12 EDT 2024. Contains 372175 sequences. (Running on oeis4.)