cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A215562 Number of permutations of n indistinguishable copies of 1..4 with every partial sum <= the same partial sum averaged over all permutations.

Original entry on oeis.org

1, 7, 403, 40350, 5223915, 783353872, 129141898872, 22745605840236, 4206489449301315, 807660192541534200, 159752979289765273698, 32371149339259024610992, 6692030708288364864188400, 1406943391115083641966787200, 300084647544974128326709244080
Offset: 0

Views

Author

Alois P. Heinz, Aug 16 2012

Keywords

Examples

			a(0) = 1: the empty permutation.
a(1) = 7: (1,2,3,4), (1,2,4,3), (1,3,2,4), (1,4,2,3), (2,1,3,4), (2,1,4,3), (2,3,1,4).
a(2) = 403: (1,1,2,2,3,3,4,4), (1,1,2,2,3,4,3,4), ..., (2,3,2,3,1,1,4,4), (2,3,2,3,1,4,1,4).
		

Crossrefs

Row n=4 of A215561.

Programs

  • Maple
    b:= proc(l) option remember; local m, n, g;
          m, n:= nops(l), add(i, i=l);
          g:= add(i*l[i], i=1..m)-(m+1)/2*(n-1);
         `if`(n<2, 1, add(`if`(l[i]>0 and i<=g,
            b(subsop(i=l[i]-1, l)), 0), i=1..m))
        end:
    a:= n-> b([n$4]):
    seq(a(n), n=0..15);
  • Mathematica
    b[l_] := b[l] = Module[{m, n, g}, {m, n} = {Length[l], Total[l]}; g = Sum[i*l[[i]], {i, 1, m}] - (m + 1)/2*(n - 1); If[n < 2, 1, Sum[If[l[[i]] > 0 && i <= g, b[ReplacePart[l, i -> l[[i]] - 1]], 0], {i, 1, m}]]];
    a[k_] := b[Array[k&, 4]];
    a /@ Range[0, 15] (* Jean-François Alcover, Dec 18 2020, after Alois P. Heinz *)

Formula

a(n) ~ (phi - sqrt(phi)) * 2^(8*n-1/2) / (Pi^(3/2) * n^(5/2)), where phi = (1+sqrt(5))/2. - Vaclav Kotesovec, Jan 31 2015