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

A168136
a(n) = Bernoulli(2n)*(2n+1)!/n!.
1
1, 1, -2, 20, -504, 25200, -2189088, 302702400, -62564261760, 18427508985600, -7449695786856960, 4010313259477324800, -2803674333549374208000, 2492728196309155284480000, -2768630339381333070099456000
OFFSET
0,3
COMMENTS
Given by alternating sums of coefficients of polynomials spawned by sums of binomial(n,k)^2*k^(2m). - John M. Campbell, Nov 30 2011
LINKS
MATHEMATICA
Table[BernoulliB[2*n]*(2*n+1)!/n!, {n, 0, 20}]
PROG
(PARI) a(n)=bernfrac(2*n)*(2*n+1)!/n!
(Magma) [Bernoulli(2*n)*Factorial(2*n+1)/Factorial(n): n in [0..20]]; // Vincenzo Librandi, Jul 14 2016
CROSSREFS
Sequence in context: A279200 A277414 A296789 * A103353 A009344 A009699
KEYWORD
sign
AUTHOR
STATUS
approved