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!)
A292805 Number of sets of nonempty words with a total of n letters over n-ary alphabet. 8

%I #16 Aug 26 2019 04:54:03

%S 1,1,5,55,729,12376,250735,5904746,158210353,4747112731,157545928646,

%T 5726207734545,226093266070501,9632339536696943,440262935648935344,

%U 21482974431740480311,1114363790702406540897,61219233429920494716931,3550130647865299090804375

%N Number of sets of nonempty words with a total of n letters over n-ary alphabet.

%H Alois P. Heinz, <a href="/A292805/b292805.txt">Table of n, a(n) for n = 0..381</a>

%F a(n) = [x^n] Product_{j=1..n} (1+x^j)^(n^j).

%F a(n) ~ n^(n - 3/4) * exp(2*sqrt(n) - 1/2) / (2*sqrt(Pi)). - _Vaclav Kotesovec_, Aug 26 2019

%e a(0) = 1: {}.

%e a(1) = 1: {a}.

%e a(2) = 5: {aa}, {ab}, {ba}, {bb}, {a,b}.

%p h:= proc(n, i, k) option remember; `if`(n=0, 1, `if`(i<1, 0,

%p add(h(n-i*j, i-1, k)*binomial(k^i, j), j=0..n/i)))

%p end:

%p a:= n-> h(n$3):

%p seq(a(n), n=0..20);

%t h[n_, i_, k_] := h[n, i, k] = If[n == 0, 1, If[i < 1, 0, Sum[h[n - i*j, i - 1, k]*Binomial[k^i, j], {j, 0, n/i}]]];

%t a[n_] := h[n, n, n];

%t Table[a[n], {n, 0, 20}] (* _Jean-François Alcover_, Jun 04 2018, from Maple *)

%Y Main diagonal of A292804.

%Y Cf. A252654, A292845.

%K nonn

%O 0,3

%A _Alois P. Heinz_, Sep 23 2017

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 04:14 EDT 2024. Contains 371918 sequences. (Running on oeis4.)