OFFSET
0,3
FORMULA
a(n) = (2n)! [x^(2n)] (3/2) x sin(x)/(2 cos(x)+1). - Ira M. Gessel Feb 23 2012
a(n) = (-1)^n*(Sum_{i, 0, 2*n - 1} (Bernoulli(i)*binomial(2*n, i)*3^i))/2. - Detlef Meya, Apr 14 2024
a(n) ~ sqrt(Pi) * 3^(2*n+1) * n^(2*n + 1/2) / (Pi^(2*n) * exp(2*n)). - Vaclav Kotesovec, Apr 14 2024
MATHEMATICA
a[n_]:=(-1)^n*Sum[BernoulliB[i]*Binomial[2*n, i]*3^i, {i, 0, 2*n-1}]/2; Flatten[Table[a[n], {n, 0, 17}]] (* Detlef Meya, Apr 14 2024 *)
PROG
(PARI) a(n)=(-1)^(n+1)*(3/4)*(9^n-1)*bernfrac(2*n)
CROSSREFS
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Dec 13 2003
STATUS
approved