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!)
A064314 Total length of longest increasing runs in all permutations of n elements. 2

%I #21 Apr 22 2022 04:57:04

%S 1,3,12,55,299,1900,13942,115932,1078361,11092265,125040100,

%T 1532995992,20310212672,289186696338,4404156016584,71441907922793,

%U 1229835421590959,22393298253477006,430019590699868644,8685717780508953928,184088653170341473400,4085097253151506682170

%N Total length of longest increasing runs in all permutations of n elements.

%H Alois P. Heinz, <a href="/A064314/b064314.txt">Table of n, a(n) for n = 1..200</a> (first 100 terms from Max Alekseyev)

%F a(n) = Sum_{k=1..n} k*A008304(n,k). - _Max Alekseyev_, May 22 2012

%p b:= proc(u, o, t, k) option remember; `if`(t=k, (u+o)!,

%p `if`(max(t, u)+o<k, 0, add(b(u+j-1, o-j, t+1, k), j=1..o)+

%p add(b(u-j, o+j-1, 1, k), j=1..u)))

%p end:

%p a:= n-> add(b(0, n, 0, k), k=1..n) -n*b(0, n, 0, n+1):

%p seq(a(n), n=1..25); # _Alois P. Heinz_, Oct 16 2013

%t nn=30;f[list_]:=Total[Table[list[[i]]*i,{i,1,Length[list]}]];a[r_]:=Apply[Plus,Table[Normal[Series[y x^(r+1)/(1-Sum[y x^i,{i,1,r}]),{x,0,nn}]][[n]]/(n+r)!,{n,1,nn-r}]]/.y->-1;Map[f,Map[Select[#,#>0&]&,Transpose[Prepend[Table[Drop[Range[0,nn]! CoefficientList[Series[1/(1-x-a[n+1])-1/(1-x-a[n]),{x,0,nn}],x],1],{n,1,28}],Table[1,{nn}]]]]] (* _Geoffrey Critzer_, Feb 25 2014 *)

%Y This sequence treats runs of adjacent elements, A003316 treats subsequences of not necessarily adjacent elements.

%K nonn

%O 1,2

%A _David W. Wilson_, Sep 07 2001

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 17 10:20 EDT 2024. Contains 372594 sequences. (Running on oeis4.)