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”).

A253665
a(n) = 2^n*n!/(floor(n/2)!)^2.
3
1, 2, 8, 48, 96, 960, 1280, 17920, 17920, 322560, 258048, 5677056, 3784704, 98402304, 56229888, 1686896640, 843448320, 28677242880, 12745441280, 484326768640, 193730707456, 8136689713152, 2958796259328, 136104627929088, 45368209309696, 2268410465484800
OFFSET
0,2
LINKS
FORMULA
a(n) = 2^n*A056040(n).
a(2*n) = 4^n*C(2*n, n) = A098430(n).
a(n) = sum(k=0..n, C(n,k)*n!/(floor(n/2)!)^2) = sum(k=0..n, A253666(n,k)).
G.f.: (1+2*(1-8*x)*x)/(1-16*x^2)^(3/2). - Benedict W. J. Irwin, Aug 15 2016
MAPLE
a := n -> 2^n*n!/iquo(n, 2)!^2: seq(a(n), n=0..25);
MATHEMATICA
Table[2^n*n!/Floor[n/2]!^2, {n, 0, 25}] (* Michael De Vlieger, Feb 02 2015 *)
CoefficientList[Series[(1 + 2 (1 - 8 x) x)/(1 - 16 x^2)^(3/2), {x, 0, 20}], x] (* Benedict W. J. Irwin, Aug 15 2016 *)
PROG
(PARI) a(n)=2^n*n!/(n\2)!^2 \\ Charles R Greathouse IV, Aug 25 2016
CROSSREFS
KEYWORD
nonn
AUTHOR
Peter Luschny, Feb 01 2015
STATUS
approved