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!)
A227223 Number of set partitions of {1,...,2^n} into sets of size at most n. 2
0, 1, 10, 2780, 6631556521, 71669271794142235712392433, 78417479379491793666843945562521255790293292270929676484784808001 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = (2^n)! * [x^(2^n)] exp(Sum_{j=1..n} x^j/j!).
a(n) = A229223(2^n,n).
EXAMPLE
a(2) = 10: 1/2/3/4, 12/3/4, 13/2/4, 14/2/3, 1/23/4, 1/24/3, 1/2/34, 12/34, 13/24, 14/23.
MAPLE
G:= proc(n, k) option remember; local j; if k>n then G(n, n)
elif n=0 then 1 elif k<1 then 0 else G(n-k, k);
for j from k-1 to 1 by -1 do %*(n-j)/j +G(n-j, k) od; % fi
end:
a:= n-> G(2^n, n):
seq(a(n), n=0..7);
MATHEMATICA
G[n_, k_] := G[n, k] = Module[{j, g}, Which[k > n, G[n, n], n == 0, 1, k < 1, 0, True, g = G[n-k, k]; For[j = k-1, j >= 1, j--, g = g*(n-j)/j + G[n-j, k]]; g]]; a[n_] := G[2^n, n]; Table[a[n], {n, 0, 7}] (* Jean-François Alcover, Dec 30 2013, translated from Maple *)
CROSSREFS
Cf. A229223.
Sequence in context: A327002 A246116 A132675 * A208185 A123377 A061543
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Sep 19 2013
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 6 02:22 EDT 2024. Contains 372290 sequences. (Running on oeis4.)