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!)
A324075 Number of defective (binary) heaps on n elements having one half of their ancestor-successor pairs (rounded down) distorted. 2

%I #26 Apr 23 2021 06:03:45

%S 1,1,1,2,6,24,120,720,5040,40320,359520,3590400,39362400,472919040,

%T 6133670400,85948262400,1284106824000,20434058444800,345796766515200,

%U 6188467544064000,117398964114432000,2341018467532800000,49035684501872640000,1074839883779211264000

%N Number of defective (binary) heaps on n elements having one half of their ancestor-successor pairs (rounded down) distorted.

%C Number of permutations p of [n] having exactly floor(A061168(n)/2) pairs (i,j) in {1,...,n} X {1,...,floor(log_2(i))} such that p(i) > p(floor(i/2^j)).

%C Central terms (also maxima) of rows of A306393.

%H Alois P. Heinz, <a href="/A324075/b324075.txt">Table of n, a(n) for n = 0..100</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/Heap.html">Heap</a>

%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Binary_heap">Binary heap</a>

%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Permutation">Permutation</a>

%F a(n) = A306393(floor(A061168(n)/2)).

%F a(n) <= (n-1)! for n >= 1 with equality only for n <= 9.

%p h:= proc(n) option remember; `if`(n<1, 0, ilog2(n)+h(n-1)) end:

%p b:= proc(u, o) option remember; local n, g, l; n:= u+o;

%p if n=0 then 1

%p else g:= 2^ilog2(n); l:= min(g-1, n-g/2); expand(

%p add(x^(n-j)*add(binomial(j-1, i)*binomial(n-j, l-i)*

%p b(i, l-i)*b(j-1-i, n-l-j+i), i=0..min(j-1, l)), j=1..u)+

%p add(x^(j-1)*add(binomial(j-1, i)*binomial(n-j, l-i)*

%p b(l-i, i)*b(n-l-j+i, j-1-i), i=0..min(j-1, l)), j=1..o))

%p fi

%p end:

%p a:= n-> coeff(b(n, 0), x, iquo(h(n), 2)):

%p seq(a(n), n=0..25);

%t h[n_] := h[n] = If[n < 1, 0, Length[IntegerDigits[n, 2]] - 1 + h[n - 1]];

%t b[u_, o_] := b[u, o] = Module[{n, g, l}, n = u + o; If[n == 0, 1,

%t g = 2^(Length[IntegerDigits[n, 2]] - 1); l = Min[g - 1, n - g/2];

%t Expand[Sum[x^(n - j)*Sum[Binomial[j - 1, i]*Binomial[n - j, l - i]*

%t b[i, l-i]*b[j-1-i, n-l-j+i], {i, 0, Min[j - 1, l]}], {j, 1, u}] +

%t Sum[x^(j - 1)*Sum[Binomial[j - 1, i]*Binomial[n - j, l - i]*

%t b[l-i, i]*b[n-l-j+i, j-1-i], {i, 0, Min[j - 1, l]}], {j, 1, o}]]]];

%t a[n_] := Coefficient[b[n, 0], x, Quotient[h[n], 2]];

%t a /@ Range[0, 25] (* _Jean-François Alcover_, Apr 23 2021, after _Alois P. Heinz_ *)

%Y Cf. A000142, A000523, A061168, A306393.

%K nonn

%O 0,4

%A _Alois P. Heinz_, Feb 14 2019

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 16 08:27 EDT 2024. Contains 371698 sequences. (Running on oeis4.)