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!)
A292873 Total number of words beginning with the first letter of an n-ary alphabet in all multisets of nonempty words with a total of n letters. 3
0, 1, 5, 37, 415, 6051, 109476, 2348767, 58191451, 1631827927, 51029454163, 1758883278967, 66200568699170, 2699977173047181, 118561410689195358, 5574984887552288475, 279398986674750754195, 14863338415349068099348, 836304620387823727353480 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
EXAMPLE
For n=2 and alphabet {a,b} we have 7 multisets: {aa}, {ab}, {ba}, {bb}, {a,a}, {a,b}, {b,b}. There is a total of 5 words beginning with the first alphabet letter, thus a(2) = 5.
MAPLE
h:= proc(n, i, k) option remember; `if`(n=0, [1, 0], `if`(i<1, 0, add(
(p-> p+[0, p[1]*j])(binomial(k^i+j-1, j)*h(n-i*j, i-1, k)), j=0..n/i)))
end:
a:= n-> `if`(n=0, 0, h(n$3)[2]/n):
seq(a(n), n=0..22);
MATHEMATICA
h[n_, i_, k_] := h[n, i, k] = If[n == 0, {1, 0}, If[i < 1, {0, 0}, Sum[ Function[p, p + {0, p[[1]]*j}][Binomial[k^i + j - 1, j]*h[n - i*j, i - 1, k]], {j, 0, n/i}]]];
a[n_] := If[n == 0, 0, h[n, n, n][[2]]/n];
Table[a[n], {n, 0, 22}] (* Jean-François Alcover, Mar 19 2022, after Alois P. Heinz *)
CROSSREFS
Sequence in context: A209671 A173796 A352122 * A161565 A235345 A318002
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Sep 25 2017
STATUS
approved

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 May 4 12:11 EDT 2024. Contains 372243 sequences. (Running on oeis4.)