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!)
A360626 Number of multisets of nonempty words over binary alphabet where each letter occurs n times. 4
1, 3, 21, 131, 830, 5066, 30456, 179256, 1038593, 5928071, 33402561, 186021335, 1025162709, 5596047683, 30282832593, 162573152651, 866385400935, 4585861723905, 24120596727003, 126124094912499, 655868112470175, 3393060517486981, 17468543071082489 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = [x^(2n)*y^n] Product_{i>=1} Product_{j=0..i} 1/(1-x^i*y^j)^binomial(i,j).
a(n) = A055375(2n,n).
EXAMPLE
a(0) = 1: {}.
a(1) = 3: {ab}, {ba}, {a,b}.
a(2) = 21: {aabb}, {abab}, {abba}, {baab}, {baba}, {bbaa}, {a,abb}, {a,bab}, {a,bba}, {aa,bb}, {aab,b}, {ab,ab}, {ab,ba}, {aba,b}, {b,baa}, {ba,ba}, {a,a,bb}, {a,ab,b}, {a,b,ba}, {aa,b,b}, {a,a,b,b}.
MAPLE
g:= proc(n, i, j) option remember; expand(`if`(j=0, 1, `if`(i<0, 0, add(
g(n, i-1, j-k)*x^(i*k)*binomial(binomial(n, i)+k-1, k), k=0..j))))
end:
b:= proc(n, i) option remember; expand(`if`(n=0, 1,
`if`(i<1, 0, add(b(n-i*j, i-1)*g(i$2, j), j=0..n/i))))
end:
a:= n-> coeff(b(2*n$2), x, n):
seq(a(n), n=0..31);
MATHEMATICA
g[n_, i_, j_] := g[n, i, j] = Expand[If[j == 0, 1, If[i < 0, 0, Sum[g[n, i - 1, j - k]*x^(i*k)*Binomial[Binomial[n, i] + k - 1, k], {k, 0, j}]]]];
b[n_, i_] := b[n, i] = Expand[If[n == 0, 1, If[i < 1, 0, Sum[b[n - i*j, i - 1]*g[i, i, j], {j, 0, n/i}]]]];
a[n_] := Coefficient[b[2n, 2n], x, n];
Table[a[n], {n, 0, 31}] (* Jean-François Alcover, Nov 17 2023, after Alois P. Heinz *)
CROSSREFS
Cf. A055375, A359962, A360638 (the same for sets).
Sequence in context: A121447 A125682 A357783 * A274586 A333030 A125701
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Feb 14 2023
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 April 27 23:22 EDT 2024. Contains 372020 sequences. (Running on oeis4.)