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.

A292719 Number of multisets of nonempty words with a total of n letters over quaternary alphabet such that within each word every letter of the alphabet is at least as frequent as the subsequent alphabet letter.

Original entry on oeis.org

1, 1, 4, 14, 67, 223, 951, 3680, 16239, 61656, 260490, 1035820, 4451494, 17534372, 73518595, 295928531, 1253898892, 5015867442, 20920480946, 84742519783, 355861723649, 1434993799839, 5962065435072, 24234396539097, 101149561260620, 409761023233915
Offset: 0

Views

Author

Alois P. Heinz, Sep 21 2017

Keywords

Crossrefs

Column k=4 of A292712.

Programs

  • Maple
    b:= proc(n, i, t) option remember; `if`(t=1, 1/n!,
          add(b(n-j, j, t-1)/j!, j=i..n/t))
        end:
    a:= proc(n) option remember; `if`(n=0, 1, add(add(d*d!*
          b(d, 0, 4), d=numtheory[divisors](j))*a(n-j), j=1..n)/n)
        end:
    seq(a(n), n=0..35);

Formula

G.f.: Product_{j>=1} 1/(1-x^j)^A092429(j).
Euler transform of A092429.