OFFSET
2,2
REFERENCES
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
Robert Israel, Table of n, a(n) for n = 2..510
T. Hearne and C. G. Wagner, Minimal covers of finite sets, Discr. Math. 5 (1973), 247-251.
FORMULA
a(n) = n * Sum_{k=1..n-1} (2^k-k-1) * S2(n-1,k) where S2(n,k) are the Stirling numbers of the second kind. - Sean A. Irvine, May 20 2015
MAPLE
seq(n*add((2^k-k-1)*Stirling2(n-1, k), k=1..n-1), n = 2 .. 30); # Robert Israel, May 21 2015
MATHEMATICA
nn = 20; Range[0, nn]! CoefficientList[Series[Sum[ (Exp[x] - 1)^n/n! (2^n - n - 1) x, {n, 0, nn}], {x, 0, nn}], x] (* Geoffrey Critzer, Feb 18 2017 *)
a[2]=0; a[3]=3; a[4]=28; a[n_]:=n*Sum[(2^k-k-1)* StirlingS2[n-1, k], {k, 1, n-1}]; Table[a[n], {n, 2, 22}] (* Indranil Ghosh, Feb 20 2017 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms from Sean A. Irvine, May 20 2015
Title clarified by Geoffrey Critzer, Feb 18 2017
STATUS
approved