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

A083008
a(n) = Sum_{k=0..n-1} 4^k*B(k)*C(n,k) where B(k) is the k-th Bernoulli number and C(n,k) = binomial(n,k).
10
0, 1, -3, 3, 9, -25, -99, 427, 2193, -12465, -79515, 555731, 4247577, -35135945, -313193811, 2990414715, 30461046561, -329655706465, -3777604994187, 45692713833379, 581778811909545, -7777794952988025, -108933009112011843, 1595024111042171723, 24370176181315498929
OFFSET
0,3
LINKS
FORMULA
E.g.f.: 4*x/(1+exp(x)+exp(2*x)+exp(3*x)). - Ira M. Gessel, Feb 23 2012
a(n) ~ n! * (cos(n*Pi/2)-sin(n*Pi/2)) * 2^(n+1) / Pi^n. - Vaclav Kotesovec, Mar 02 2014
MATHEMATICA
Range[0, 15]! CoefficientList[ Series[ 4x/(1 + Exp[x] + Exp[ 2x] + Exp[ 3x]), {x, 0, 15}], x] (* Robert G. Wilson v, Oct 26 2012 *)
Table[Sum[4^k*BernoulliB[k] Binomial[n, k], {k, 0, n - 1}], {n, 0, 24}] (* Michael De Vlieger, Sep 28 2016 *)
PROG
(PARI) a(n)=sum(k=0, n-1, 4^k*binomial(n, k)*bernfrac(k))
CROSSREFS
KEYWORD
sign
AUTHOR
Benoit Cloitre, May 31 2003
EXTENSIONS
Offset changed to 0 by Seiichi Manyama, Sep 28 2016
STATUS
approved