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!)
A147681 Late-growing permutations: number of permutations of 1..n with every partial sum <= the same partial sum averaged over all permutations. 21

%I #34 Jan 02 2023 12:30:47

%S 1,1,1,3,7,35,139,1001,5701,53109,402985,4605271,43665667,589809987,

%T 6735960079,104899483845,1402547616085,24698838710457,378845419610773,

%U 7444522779300351,128830635114146047,2792467448952670671,53854927962971227495,1276369340371154144337,27141331409803338993193,698008560075731437652425,16228797258964121571885457,450111715263775132783135875

%N Late-growing permutations: number of permutations of 1..n with every partial sum <= the same partial sum averaged over all permutations.

%C Same as A145874.

%H David Scambler et al., <a href="http://list.seqfan.eu/oldermail/seqfan/2012-August/010018.html">A147681 Late-growing permutations</a> and follow-up messages on the SeqFan list, Aug 10 2012

%p a:= proc(n) option remember; local b, m; m:= n*(n+1)/2;

%p b:= proc(s) option remember; local h, g; h:= nops(s);

%p g:= (n-h+1)*(1+n)/2 -m +add(i, i=s); `if`(h<2, 1,

%p add(`if`(s[i]<=g, b(subsop(i=NULL, s)), 0), i=1..h))

%p end; forget(b);

%p b([$1..n])

%p end:

%p seq(a(n), n=0..15); # _Alois P. Heinz_, Aug 10 2012

%t a[n_] := a[n] = Module[{b, m}, m = n*(n+1)/2; b[s_List] := b[s] = Module[{h, g}, h = Length[s]; g = (n-h+1)*(1+n)/2 - m + Total[s]; If[h<2, 1, Sum[If[s[[i]] <= g, b[ReplacePart[s, i -> Sequence[]]], 0], {i, 1, h}]]]; b[Range[n]]]; Table[a[n], {n, 0, 15}] (* _Jean-François Alcover_, Mar 13 2015, after _Alois P. Heinz_ *)

%Y This is the first of 19 related sequences, the others being A147682, A147684, A147686, A147687, A147692, A147694, A147695, A147697, A147698, A147700, A147705, A147707, A147712, A147713, A147714, A147715, A147717, A147769.

%Y Column k=1 of A215561.

%K nonn,hard

%O 0,4

%A _R. H. Hardin_, May 01 2009

%E a(22) from _Alois P. Heinz_, Aug 10 2012

%E a(23) from _Alois P. Heinz_, Nov 01 2014

%E a(24)-a(25) from _Vaclav Kotesovec_, Jan 31 2015

%E a(26)-a(27) from _Vaclav Kotesovec_, Sep 07 2016

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 24 16:34 EDT 2024. Contains 371961 sequences. (Running on oeis4.)