The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A036280 Numerators in Taylor series for x * cosec(x). 7

%I #65 Sep 03 2023 17:35:33

%S 1,1,7,31,127,73,1414477,8191,16931177,5749691557,91546277357,

%T 3324754717,1982765468311237,22076500342261,65053034220152267,

%U 925118910976041358111,16555640865486520478399,8089941578146657681,29167285342563717499865628061

%N Numerators in Taylor series for x * cosec(x).

%C These are also the numerators of the coefficients appearing in the MacLaurin summation formula (which might be called the 'MacLaurin numbers') (see Gould & Squire, p. 45). - _Peter Luschny_, Feb 20 2016

%D G. W. Caunt, Infinitesimal Calculus, Oxford Univ. Press, 1914, p. 477.

%H Seiichi Manyama, <a href="/A036280/b036280.txt">Table of n, a(n) for n = 0..275</a> (terms 0..100 from T. D. Noe)

%H M. Abramowitz and I. A. Stegun, eds., <a href="http://www.convertit.com/Go/ConvertIt/Reference/AMS55.ASP">Handbook of Mathematical Functions</a>, National Bureau of Standards Applied Math. Series 55, Tenth Printing, 1972, p. 75 (4.3.68).

%H H. W. Gould and W. Squire, <a href="http://www.jstor.org/stable/2312783">Maclaurin's second formula and its generalization</a>, Amer. Math. Monthly, 70 (1963), pp. 44-52.

%H M. Kauers and P. Paule, <a href="http://dx.doi.org/10.1007/978-3-7091-0445-3">The Concrete Tetrahedron</a>, Springer 2011, p. 30.

%H J. Malenfant, <a href="http://arxiv.org/abs/1104.4332">Factorization of and Determinant Expressions for the Hypersums of Powers of Integers</a>, arXiv preprint arXiv:1104.4332 [math.NT], 2011.

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/HyperbolicCosecant.html">Hyperbolic Cosecant</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/Cosecant.html">Cosecant</a>

%F Numerator of Sum_{k=1..2*n-2} Sum_{j=1..k} 2^(1-j)*(-1)^(n+j-1) * binomial(k,j) * Sum_{i=0..floor(j/2)} (j-2*i)^(2*n+j-2) * binomial(j,i) * (-1)^i/(2*n+j-2)!, n > 1. - _Vladimir Kruchinin_, Apr 12 2011

%F E.g.f.: x/sin(x) = 1 + (x^2/(6-x^2))*T(0), where T(k) = 1 - x^2*(2*k+2)*(2*k+3)/( x^2*(2*k+2)*(2*k+3) + ((2*k+2)*(2*k+3) - x^2)*((2*k+4)*(2*k+5) - x^2)/T(k+1) ); (continued fraction). - _Sergei N. Gladkovskii_, Oct 25 2013

%F a(n) = numerator((-1)^n*B(2*n,1/2)/(2*n)!) where B(n,x) denotes the Bernoulli polynomial. - _Peter Luschny_, Feb 20 2016

%F a(n) = numerator(Sum_{k=1..n+1}((Sum_{j=2*k-1..2*n+1}(binomial(j,2*k-1)*(j-1)!*2^(1-j)*(-1)^(n+1+j)*stirling2(2*n+1,j)))/(2*k-1))/(2*n)!). - _Vladimir Kruchinin_, Mar 21 2016

%F a(n) = numerator(eta(2*n)/Pi^(2*n)), where eta(n) is the Dirichlet eta function. See A230265 for denominator. - _Mohammed Yaseen_, Aug 02 2023

%e cosec(x) = x^(-1) + (1/6)*x + (7/360)*x^3 + (31/15120)*x^5 + ...

%e 1, 1/6, 7/360, 31/15120, 127/604800, 73/3421440, 1414477/653837184000, 8191/37362124800, ...

%p series(x*csc(x),x,60);

%p seq(numer((-1)^n*bernoulli(2*n,1/2)/(2*n)!), n=0..30); # _Robert Israel_, Mar 21 2016

%t nn = 34; t = Numerator[CoefficientList[Series[x*Csc[x], {x, 0, nn}], x]*Range[0, nn]!]; Take[t, {1, nn-1, 2}] (* _T. D. Noe_, Oct 28 2013 *)

%o (Maxima)

%o a(n):=num(sum(sum((2^(1-j)*(-1)^(n+j-1)*binomial(k,j)*sum((j-2*i)^(2*n+j-2)*binomial(j,i)*(-1)^(i),i,0,floor(j/2)))/(2*n+j-2)!,j,1,k),k,1,2*n-2)); n>1. a(1)=1. /* _Vladimir Kruchinin_, Apr 12 2011 */

%o (Sage)

%o def A036280_list(len):

%o R, C = [1], [1]+[0]*(len-1)

%o for n in (1..len-1):

%o for k in range(n, 0, -1):

%o C[k] = -C[k-1] / (8*k*(2*k+1))

%o C[0] = -sum(C[k] for k in (1..n))

%o R.append(C[0].numerator())

%o return R

%o print(A036280_list(19)) # _Peter Luschny_, Feb 20 2016

%o (Maxima)

%o a(n):=(sum((sum(binomial(j,2*k-1)*(j-1)!*2^(1-j)*(-1)^(n+1+j)*stirling2(2*n+1,j),j,2*k-1,2*n+1))/(2*k-1),k,1,n+1))/(2*n)!;

%o /* _Vladimir Kruchinin_, Mar 21 2016 */

%Y Cf. A036281, A036282, A036283.

%Y Cf. A230265.

%K nonn,frac,easy

%O 0,3

%A _N. J. A. Sloane_

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 May 13 15:16 EDT 2024. Contains 372520 sequences. (Running on oeis4.)