final List<DoubleOp> functions = new ArrayList<DoubleOp>();
functions.add(new Fourth());
functions.add(new Bind2nd(new Minus(), mean()));
final Expression comp = new Expression(functions);
final double x = expectationValue(comp, new TruePredicate()).getFirst();
final double _N = n;
final double sigma2 = standardDeviation();
final double c1 = (_N/(_N-1.0)) * (_N/(_N-2.0)) * ((n+1.0)/(_N-3.0));
final double c2 = 3.0 * ((_N-1.0)/(_N-2.0)) * ((_N-1.0)/(_N-3.0));