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.

A320762 Number of ordered set partitions of [n] where the maximal block size equals six.

Original entry on oeis.org

1, 14, 224, 3696, 64680, 1206744, 24011988, 508864356, 11459682234, 273563089800, 6904861371408, 183819838041840, 5149305370473264, 151447801937560128, 4666989813249123360, 150394712706368466336, 5059062167993588722968, 177346570951333803395376
Offset: 6

Views

Author

Alois P. Heinz, Oct 20 2018

Keywords

Crossrefs

Column k=6 of A276922.

Programs

  • Maple
    b:= proc(n, k) option remember; `if`(n=0, 1, add(
          b(n-i, k)*binomial(n, i), i=1..min(n, k)))
        end:
    a:= n-> (k-> b(n, k) -b(n, k-1))(6):
    seq(a(n), n=6..25);

Formula

E.g.f.: 1/(1-Sum_{i=1..6} x^i/i!) - 1/(1-Sum_{i=1..5} x^i/i!).
a(n) = A276926(n) - A276925(n).