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!)
A321314 Number of permutations of [n] where the length of the longest increasing subsequence is larger than the length of the longest decreasing subsequence. 4

%I #21 Aug 31 2021 14:35:39

%S 0,1,1,10,42,232,1879,15228,131452,1329136,15106976,182954700,

%T 2363478435,33096395494,501248446126,8094778608472,138112754890488,

%U 2487454752219208,47344572399516136,950682668010605104,20055050996527350752,442701537970743308588,10202898078512473893032

%N Number of permutations of [n] where the length of the longest increasing subsequence is larger than the length of the longest decreasing subsequence.

%H Alois P. Heinz, <a href="/A321314/b321314.txt">Table of n, a(n) for n = 1..80</a>

%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Longest_increasing_subsequence">Longest increasing subsequence</a>

%F a(n) = Sum_{k=1..n-1} A321316(n,k).

%F a(n) = (n! - A321313(n))/2.

%F a(n) = A321315(n) - A321313(n).

%p h:= l-> (n-> add(i, i=l)!/mul(mul(1+l[i]-j+add(`if`(j>

%p l[k], 0, 1), k=i+1..n), j=1..l[i]), i=1..n))(nops(l)):

%p f:= l-> `if`(l[1]<nops(l), h(l)^2, 0):

%p g:= (n, i, l)-> `if`(n=0 or i=1, f([l[], 1$n]),

%p g(n, i-1, l) +g(n-i, min(i, n-i), [l[], i])):

%p a:= n-> g(n$2, []):

%p seq(a(n), n=1..23);

%t h[l_] := With[{n = Length[l]}, Total[l]!/Product[Product[1 + l[[i]] - j + Sum[If[j > l[[k]], 0, 1], {k, i + 1, n}], {j, 1, l[[i]]}], {i, 1, n}]];

%t f[l_] := If[l[[1]] < Length[l], h[l]^2, 0];

%t g[n_, i_, l_] := If[n == 0 || i == 1, f[Join[l, Table[1, {n}]]], g[n, i - 1, l] + g[n - i, Min[i, n - i], Append[l, i]]];

%t a[n_] := g[n, n, {}];

%t Array[a, 25] (* _Jean-François Alcover_, Aug 31 2021, after _Alois P. Heinz_ *)

%Y Cf. A000142, A003316, A321313, A321315, A321316.

%K nonn

%O 1,4

%A _Alois P. Heinz_, Nov 03 2018

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 6 11:18 EDT 2024. Contains 373127 sequences. (Running on oeis4.)