login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A052638
E.g.f. x^2*(1+x-2x^2)/(1-2x).
0
0, 0, 2, 18, 96, 960, 11520, 161280, 2580480, 46448640, 928972800, 20437401600, 490497638400, 12752938598400, 357082280755200, 10712468422656000, 342798989524992000, 11655165643849728000, 419585963178590208000
OFFSET
0,3
FORMULA
E.g.f.: x^2*(-x+2*x^2-1)/(-1+2*x)
Recurrence: {a(1)=0, a(0)=0, a(2)=2, (-2*n-2)*a(n)+a(n+1)=0, a(3)=18, a(4)=96}
1/4*2^n*n!
MAPLE
spec := [S, {S=Prod(Z, Z, Union(Z, Sequence(Union(Z, Z))))}, labeled]: seq(combstruct[count](spec, size=n), n=0..20);
MATHEMATICA
With[{nn=20}, CoefficientList[Series[x^2 (1+x-2x^2)/(1-2x), {x, 0, nn}], x] Range[0, nn]!] (* Harvey P. Dale, Feb 29 2012 *)
CROSSREFS
Sequence in context: A224616 A052633 A375628 * A127553 A055357 A087291
KEYWORD
easy,nonn
AUTHOR
encyclopedia(AT)pommard.inria.fr, Jan 25 2000
STATUS
approved