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!)
A094573 Triangle T(n,k) giving number of (<=2)-covers of an n-set with k blocks. 2
1, 1, 1, 3, 1, 1, 12, 20, 7, 1, 39, 169, 186, 59, 3, 1, 120, 1160, 2755, 2243, 661, 55, 1, 363, 7381, 33270, 52060, 33604, 9167, 910, 15, 1, 1092, 45500, 367087, 988750, 1126874, 601262, 151726, 16401, 525, 1, 3279, 276529, 3873786, 17005149 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
Cover of a set is (<=2)-cover if every element of the set is covered with at most two blocks of the cover.
LINKS
FORMULA
E.g.f.: exp(-x-x^2/2*(exp(y)-1))*(Sum_{n>=0} exp(y*binomial(n+1, 2))*x^n/n!).
EXAMPLE
1;
1;
1,3,1;
1,12,20,7;
1,39,169,186,59,3;
1,120,1160,2755,2243,661,55;
...
MATHEMATICA
rows = 9; m = rows + 2;
egf = Exp[-x - (x^2/2)*(Exp[y]-1)]*Sum[Exp[y*Binomial[n+1, 2]]*(x^n/n!), {n, 0, m}];
cc = CoefficientList[# + O[x]^m, x]& /@ CoefficientList[egf + O[y]^m, y];
(Range[0, Length[cc]-1]! * cc)[[1 ;; rows]] /. {0, a__} :> {a} // Flatten (* Jean-François Alcover, May 13 2019 *)
CROSSREFS
Sequence in context: A156584 A209424 A129619 * A055154 A338875 A015112
KEYWORD
nonn,tabf
AUTHOR
Goran Kilibarda, Vladeta Jovovic, May 12 2004
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 19 03:30 EDT 2024. Contains 371782 sequences. (Running on oeis4.)