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!)
A249699 Numerators of coefficients in series expansion of Cl_2(x)+x*log(x), where Cl_2 is the Clausen function of order 2. 1
0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 691, 0, 1, 0, 3617, 0, 43867, 0, 174611, 0, 77683, 0, 236364091, 0, 657931, 0, 3392780147, 0, 1723168255201, 0, 7709321041217, 0, 151628697551, 0, 26315271553053477373, 0, 154210205991661, 0, 261082718496449122051, 0 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,14
LINKS
Eric Weisstein's MathWorld, Clausen Function
Eric Weisstein's MathWorld, Clausen's Integral
FORMULA
Numerators of BernoulliB(n - 1)/((n - 1)*n!), except the first 3 terms.
EXAMPLE
Coefficients begin 0, 1, 0, 1/72, 0, 1/14400, 0, 1/1270080, 0, 1/87091200, 0, 1/5269017600, 0, 691/203997201408000, ...
MAPLE
A249699List := proc(len) local mu, ser;
mu := h -> sum(bernoulli(2*k)/(2*k)!*h^(2*k-1), k=0..infinity);
ser := series(mu(h), h, len+2): seq((-1)^binomial(n, 2)*numer(coeff(ser, h, n)), n=0..len): 0, 1, op([%]) end: A249699List(48); # Peter Luschny, Dec 05 2018
MATHEMATICA
Clausen2[x_] := (I/2)*(PolyLog[2, Exp[-I*x]] - PolyLog[2, Exp[I*x]]); a[n_] := SeriesCoefficient[Clausen2[x] + x*Log[x], {x, 0, n}]; (* or *) a[n_] := If[Mod[n, 4] == 3, 1, -1]*BernoulliB[n - 1]/((n - 1)*n!); a[0] = a[2] = 0; a[1] = 1; Table[a[n] // Numerator, {n, 0, 30}] (* Apparently this only works with an older version of Mma *)
Flatten[{0, 1, Table[If[EvenQ[n], Numerator[Zeta[n]/(n*(n+1)*2^(n-1)*Pi^n)], 0], {n, 1, 30}]}] (* Vaclav Kotesovec, Nov 04 2014 *)
CROSSREFS
Sequence in context: A120084 A120082 A358625 * A141588 A281331 A281332
KEYWORD
nonn,frac
AUTHOR
EXTENSIONS
More terms from Peter Luschny, Dec 05 2018
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 24 03:08 EDT 2024. Contains 371918 sequences. (Running on oeis4.)