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!)
A321277 One half of the sum over all permutations of [n] of the absolute difference between the length of the longest increasing subsequence and the length of the longest decreasing subsequence. 7

%I #16 Apr 01 2019 15:26:52

%S 0,1,2,12,61,367,2805,23372,213317,2189823,24882811,305633678,

%T 4037554628,57447084699,877263905683,14276260437624,246201450585329,

%U 4487236144246511,86286209907252739,1746559569805617910,37106502447954647906,825196425771658993531

%N One half of the sum over all permutations of [n] of the absolute difference between the length of the longest increasing subsequence and the length of the longest decreasing subsequence.

%H Alois P. Heinz, <a href="/A321277/b321277.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) = (1/2) * Sum_{k=1-n..n-1} abs(k) * A321316(n,k).

%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-> h(l)^2*abs(l[1]-nops(l))/2:

%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, A321273, A321274, A321275, A321276, A321278, A321316.

%K nonn

%O 1,3

%A _Alois P. Heinz_, Nov 01 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 April 25 12:33 EDT 2024. Contains 371969 sequences. (Running on oeis4.)