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!)
A262280 Number of ways to select a nonempty subset s from an n-set and then partition s into blocks of equal size. 3

%I #16 Feb 15 2017 11:27:20

%S 0,1,4,11,29,72,190,527,1552,5031,18087,66904,266381,1164516,5215644,

%T 23868103,117740143,609872350,3268548406,18110463455,102867877414,

%U 620476915965,4005216028161,25747549921338,166978155172420,1168774024335203,8556355097320141

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

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

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

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

%F a(n) = A262320(n) - 1.

%e a(3) = 11: 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-> 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_] := n!*Sum[b[k]/(n-k)!, {k, 1, n}]; Table[a[n], {n, 0, 30}] (* _Jean-François Alcover_, Feb 15 2017, translated from Maple *)

%Y Cf. A038041, A262320.

%K nonn

%O 0,3

%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 April 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)