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!)
A320217 Number of multisets of nonempty words with a total of n letters over septenary alphabet such that all letters occur at least once in the multiset. 3

%I #4 Oct 07 2018 14:47:52

%S 37633,1394414,30044014,493609088,6864854521,85265606888,976232236182,

%T 10515038040403,108038163343516,1069407324384749,10272179741315583,

%U 96275040557582796,884152621318502522,7982464409593829883,71036604818774830215,624423552992566806913

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

%H Alois P. Heinz, <a href="/A320217/b320217.txt">Table of n, a(n) for n = 7..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))(7):

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

%Y Column k=7 of A257740.

%Y Cf. A320208.

%K nonn

%O 7,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 July 18 01:34 EDT 2024. Contains 374377 sequences. (Running on oeis4.)