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.

A320214 Number of multisets of nonempty words with a total of n letters over quaternary alphabet such that all letters occur at least once in the multiset.

This page as a plain text file.
%I A320214 #5 Oct 07 2018 14:41:44
%S A320214 73,1028,9182,66584,428653,2557972,14496714,79179724,420817947,
%T A320214 2190356332,11216217292,56689332604,283477764373,1404999644584,
%U A320214 6911375241384,33778491898132,164157640596783,793799200891568,3821351207383146,18321693995577480,87520485093330489
%N A320214 Number of multisets of nonempty words with a total of n letters over quaternary alphabet such that all letters occur at least once in the multiset.
%H A320214 Alois P. Heinz, <a href="/A320214/b320214.txt">Table of n, a(n) for n = 4..1000</a>
%p A320214 b:= proc(n, k) option remember; `if`(n=0, 1, add(add(
%p A320214       d*k^d, d=numtheory[divisors](j))*b(n-j, k), j=1..n)/n)
%p A320214     end:
%p A320214 a:= n-> (k-> add(b(n, k-i)*(-1)^i*binomial(k, i), i=0..k))(4):
%p A320214 seq(a(n), n=4..25);
%Y A320214 Column k=4 of A257740.
%Y A320214 Cf. A320205.
%K A320214 nonn
%O A320214 4,1
%A A320214 _Alois P. Heinz_, Oct 07 2018