login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A083007 a(n) = Sum_{k=0..n-1} 3^k*B(k)*C(n,k) where B(k) is the k-th Bernoulli number and C(n,k)=binomial(n,k). 12

%I #36 Jul 13 2023 04:56:12

%S 0,1,-2,1,4,-5,-26,49,328,-809,-6710,20317,201772,-722813,-8370194,

%T 34607305,457941136,-2145998417,-31945440878,167317266613,

%U 2767413231220,-16020403322021,-291473080313162,1848020950359841,36679231132772824,-252778977216700025,-5435210060467425446

%N a(n) = Sum_{k=0..n-1} 3^k*B(k)*C(n,k) where B(k) is the k-th Bernoulli number and C(n,k)=binomial(n,k).

%H Seiichi Manyama, <a href="/A083007/b083007.txt">Table of n, a(n) for n = 0..510</a>

%H G. Almkvist and A. Meurman, <a href="https://mr.math.ca/article/values-of-bernoulli-polynomials-and-hurwitzs-zeta-function-at-rational-points/">Values of Bernoulli polynomials and Hurwitz's Zeta function at rational points</a>, C. R. Math. Rep. Acad. Sci. Canada 13 (1991), 104-109.

%H Ira M. Gessel, <a href="https://doi.org/10.5281/zenodo.7625111">On the Almkvist-Meurman Theorem for Bernoulli Polynomials</a>, Integers (2023) Vol. 23, #A14.

%H B. Sury, <a href="http://www.isibang.ac.in/~sury/bulllms.pdf">The value of Bernoulli Polynomials at rational numbers</a>, Bull. London Math. Soc. 25 (1993), 327-29.

%F E.g.f.: 3x/(1+e^x+e^(2x)). - _Ira M. Gessel_, Jan 28 2012

%F From _Peter Bala_, Mar 01 2015: (Start)

%F a(2*n+1) = (-1)^(n+1)*A002111(n) for n >= 1.

%F a(n) = 3^n * ( B(n,1/3) - B(n,0) ), where B(n,x) denotes the n-th Bernoulli polynomial. More generally, Almkvist and Meurman show that k^n * ( B(n, 1/k) - B(n, 0) ) is an integer sequence for k = 2,3,4,..., which proves the integrality of A083008 through A083014.

%F a(0) = 1 and for n >= 1, a(n) = 1 - 1/(n + 1)*Sum_{k = 1..n-1} 3^(n-k)*binomial(n+1,k)*a(k) (Sury, Section 1). (End)

%p A083007 := proc(n)

%p 3*x/(1+exp(x)+exp(2*x)) ;

%p coeftayl(%,x=0,n) ;

%p %*n! ;

%p end proc:

%p seq(A083007(n),n=0..30) ; # _R. J. Mathar_, Jul 13 2023

%t Range[0, 15]! CoefficientList[ Series[ 3x/(1 + Exp[x] + Exp[ 2x]), {x, 0, 15}], x] (* _Robert G. Wilson v_, Oct 26 2012 *)

%t Table[Sum[3^k BernoulliB[k]Binomial[n,k],{k,0,n-1}],{n,0,30}] (* _Harvey P. Dale_, May 26 2014 *)

%o (PARI) a(n)=sum(k=0,n-1,3^k*binomial(n,k)*bernfrac(k))

%Y Cf. A001469.

%Y Cf. A036968, A083008, A083009, A083010, A083011, A083012, A083013, A083014.

%Y Cf. A002111.

%K sign,easy

%O 0,3

%A _Benoit Cloitre_, May 31 2003

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)