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!)
A083010 a(n) = 6^n(B_n(1/6)-B_n(0)) where B_n(x) is the n-th Bernoulli polynomial. 9
0, 1, -5, 10, 25, -170, -575, 6370, 28225, -415826, -2294975, 41649850, 275622625, -5922729722, -45718037855, 1134081384850, 10004182986625, -281284596509858, -2791456543622015, 87722769712529770, 967282878165054625, -33597252908389628234, -407509096583935700255 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
E.g.f.: 6x(exp(x)-1)/(exp(6x)-1). - Michael Somos, Aug 02 2006
a(n) = Sum_{k=0..n-1} 6^k*B(k)*C(n,k) where B(k) is the k-th Bernoulli number and C(n,k) = binomial(n,k).
MATHEMATICA
Range[0, 15]! CoefficientList[ Series[ 6x/(1 + Exp[x] + Exp[ 2x] + Exp[ 3x] + Exp[ 4x] + Exp[ 5x]), {x, 0, 15}], x] (* Robert G. Wilson v, Oct 26 2012 *)
PROG
(PARI) a(n)=sum(k=0, n-1, 6^k*binomial(n, k)*bernfrac(k))
(PARI) {a(n)=if(n<1, 0, n!*polcoeff( 6*x*(exp(x+x*O(x^n))-1)/(exp(6*x +x*O(x^n))-1), n))} /* Michael Somos, Aug 02 2006 */
CROSSREFS
Cf. A001469.
Sequence in context: A212950 A038252 A211865 * A324005 A166388 A290055
KEYWORD
sign
AUTHOR
Benoit Cloitre, May 31 2003
STATUS
approved

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 25 08:27 EDT 2024. Contains 371964 sequences. (Running on oeis4.)