login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A320215 Number of multisets of nonempty words with a total of n letters over quinary alphabet such that all letters occur at least once in the multiset. 3

%I #4 Oct 07 2018 14:43:35

%S 501,10310,129485,1285815,11117600,87804401,651039050,4610303390,

%T 31536998095,210038354645,1369653353001,8781196628665,55523386000940,

%U 347061871472795,2148545319437735,13192142317933416,80429793804860995,487358723056001905,2937204731254087895

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

%H Alois P. Heinz, <a href="/A320215/b320215.txt">Table of n, a(n) for n = 5..1000</a>

%p b:= proc(n, k) option remember; `if`(n=0, 1, add(add(

%p d*k^d, d=numtheory[divisors](j))*b(n-j, k), j=1..n)/n)

%p end:

%p a:= n-> (k-> add(b(n, k-i)*(-1)^i*binomial(k, i), i=0..k))(5):

%p seq(a(n), n=5..25);

%Y Column k=5 of A257740.

%Y Cf. A320206.

%K nonn

%O 5,1

%A _Alois P. Heinz_, Oct 07 2018

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)