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.

A229251 Number of set partitions of {1,...,n} with largest set of size 9.

Original entry on oeis.org

1, 10, 110, 1100, 10725, 104104, 1016015, 10032880, 100643400, 1028142830, 10712984282, 113961363880, 1238298284860, 13747432565790, 155944562191220, 1807325391776872, 21396572780305250, 258695925902828700, 3193365395052825850, 40233167990427412000
Offset: 9

Views

Author

Alois P. Heinz, Sep 17 2013

Keywords

Crossrefs

Column k=9 of A080510.

Programs

  • Maple
    G:= proc(n, k) option remember; local j; if k>n then G(n, n)
          elif n=0 then 1 elif k<1 then 0 else G(n-k, k);
          for j from k-1 to 1 by -1 do %*(n-j)/j +G(n-j, k) od; % fi
        end:
    a:= n-> G(n,9)-G(n,8):
    seq(a(n), n=9..30);

Formula

E.g.f.: exp(Sum_{j=1..9} x^j/j!) - exp(Sum_{j=1..8} x^j/j!).