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.

A320207 Number of sets of nonempty words with a total of n letters over senary alphabet such that all letters occur at least once in the set.

Original entry on oeis.org

4051, 111396, 1830822, 23420022, 257667120, 2564003346, 23761098837, 208907298660, 1764392910027, 14440938630576, 115269796672350, 901599089475150, 6935143271107130, 52608326918749428, 394424679767297550, 2927811687630339744, 21547773469006784856
Offset: 6

Views

Author

Alois P. Heinz, Oct 07 2018

Keywords

Crossrefs

Column k=6 of A319501.
Cf. A320216.

Programs

  • Maple
    h:= proc(n, i, k) option remember; `if`(n=0, 1, `if`(i<1, 0,
          add(h(n-i*j, i-1, k)*binomial(k^i, j), j=0..n/i)))
        end:
    a:= n-> (k-> add((-1)^i*binomial(k, i)*h(n$2, k-i), i=0..k))(6):
    seq(a(n), n=6..25);