The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A262320 Number of ways to select a subset s from an n-set and then partition s into blocks of equal size. 4

%I #12 Dec 18 2016 10:33:54

%S 1,2,5,12,30,73,191,528,1553,5032,18088,66905,266382,1164517,5215645,

%T 23868104,117740144,609872351,3268548407,18110463456,102867877415,

%U 620476915966,4005216028162,25747549921339,166978155172421,1168774024335204,8556355097320142

%N Number of ways to select a subset s from an n-set and then partition s into blocks of equal size.

%H Alois P. Heinz, <a href="/A262320/b262320.txt">Table of n, a(n) for n = 0..616</a>

%F E.g.f.: exp(x) * (1 + Sum_{k>=1} (exp(x^k/k!)-1)).

%F a(n) = 1 + Sum_{k=1..n} C(n,k) * A038041(k).

%F a(n) = 1 + A262280(n).

%F a(n) = Sum_{k=0..n} A262321(k).

%e a(3) = 12: {}, 1, 2, 3, 12, 1|2, 13, 1|3, 23, 2|3, 123, 1|2|3.

%p b:= proc(n) option remember;

%p add(1/(d!*(n/d)!^d), d=numtheory[divisors](n))

%p end:

%p a:= n-> 1 + n! * add(b(k)/(n-k)!, k=1..n):

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

%t b[n_] := b[n] = DivisorSum[n, 1/(#!*(n/#)!^#)&]; a[n_] := 1 + n! * Sum[b[k]/(n-k)!, {k, 1, n}]; Table[a[n], {n, 0, 30}] (* _Jean-François Alcover_, Dec 18 2016, after _Alois P. Heinz_ *)

%Y Partial sums of A262321.

%Y Cf. A038041, A262280.

%K nonn

%O 0,2

%A _Alois P. Heinz_, Sep 17 2015

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