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

%I #9 Nov 04 2018 11:04:17

%S 1,1,5,14,78,488,3161,25092,231428,2299664,24809824,296046900,

%T 3863542365,54081895706,806425921874,12828011279528,217574673205512,

%U 3914918953508792,74300528009315864,1482219340166034896,31035891175182089248,681299189806864371412,15649118660372502746968

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

%H Alois P. Heinz, <a href="/A321315/b321315.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=0..n-1} A321316(n,k).

%F a(n) = A321313(n) + A321314(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);

%Y Cf. A003316, A321313, A321314, A321316.

%K nonn

%O 1,3

%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 May 10 20:32 EDT 2024. Contains 372388 sequences. (Running on oeis4.)