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.

A245860 Number of preferential arrangements of n labeled elements such that the minimal number of elements per rank equals 7.

Original entry on oeis.org

1, 0, 0, 0, 0, 0, 0, 3432, 12870, 22880, 38896, 63648, 100776, 155040, 399305520, 3292693008, 17879790324, 70676513424, 242216077400, 762341522800, 2264840592300, 478970960616720, 6869326015894680, 61426122596911800, 435982960069722000, 2589856033041531072
Offset: 7

Views

Author

Alois P. Heinz, Aug 04 2014

Keywords

Crossrefs

Column k=7 of A245733.

Programs

  • Maple
    b:= proc(n, k) option remember; `if`(n=0, 1,
          add(b(n-j, k)*binomial(n, j), j=k..n))
        end:
    a:= n-> b(n, 7) -b(n, 8):
    seq(a(n), n=7..35);

Formula

E.g.f.: 1/(1-Sum_{j>=7} x^j/j!) - 1/(1-Sum_{j>=8} x^j/j!).
a(n) = A245792(n) - A245793(n) = A245732(n,7) - A245732(n,8).