cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-3 of 3 results.

A104007 Denominators of coefficients in expansion of x^2*(1-exp(-2*x))^(-2).

Original entry on oeis.org

4, 2, 12, 6, 60, 90, 378, 945, 2700, 9450, 20790, 93555, 116093250, 638512875, 1403325, 18243225, 43418875500, 325641566250, 4585799468250, 38979295480125, 161192575293750, 1531329465290625, 640374140030625, 13447856940643125, 17558223649022306250
Offset: 0

Views

Author

N. J. A. Sloane, Apr 17 2005

Keywords

Comments

It appears that a(2n+2) = A002432(n). As A098087(n)/A104007(n) = x*(csch(x)^4)/(4*(coth(x)-1)^2), then a(2n+2) would represent the sequence of denominators for just the even powers of the full series representation at x=0. A002432 could be conjectured to be the non-hyperbolic, or circle trigonometric, function equivalent where the full series of denominators could be found by the formula x*((csc(x)^2)/4) - cot(x)/2) + 1 for a(n) > 4.
Hyperbolic Trigonometric Functions:
Entire Series: x*(csch(x)^4) / (4*(coth(x)-1)^2).
Even Powers: (1/2)*(1-x*coth(x)).
Odd Powers: (1/4)*(2x + (csch(x)^2) + 2).
Circular Trigonometric Functions:
Entire Series: x*((csc(x)^2)/4) - cot(x)/2) + 1.
Even Powers: (1/2)*(1-x*cot(x)).
Odd Powers: (1/4)*(2x + (csc(x)^2) + 2).
In turn, one may be able to derive some constant for x that can represent the zeta functions of odd positive integers. For zeta functions of even positive integers, that constant is Pi. - Terry D. Grant, Sep 24 2016
One can use the connection of the expansion of x^2*(1-exp(-2*x))^(-2) to Bernoulli numbers to prove that a(2n+2) = A002432(n), a(2n) = denominator(zeta(2n-2)) and a(2n-1) = denominator(1/2 (2n-3) zeta(2n-2)), and more generally that the expansion of x^2*(1-exp(-2*x))^(-2) is related to zeta(2n). The connection to Bernoulli numbers comes from the fact that x^2*(1-exp(-2*x))^(-2) is related to the trigonometric functions cot and csc, and they both have the series coefficients related to Bernoulli numbers, which are only related to zeta(2n), zeta functions of even positive integers, and not zeta(2n-1), zeta functions of odd positive integers. Because both a(2n) and a(2n-1) are related to zeta functions of even positive integers, the odd or even terms of this sequence are only related to zeta functions of odd positive integers if zeta(2n) is itself related to zeta(2n-1). - Andrey Mitin, Aug 16 2020

Crossrefs

See A098087 for further information.
Cf. A002432.

Programs

  • Mathematica
    Denominator[ CoefficientList[ Series[x^2*(1 - E^(-2x))^(-2), {x, 0, 33}], x]] (* Robert G. Wilson v, Apr 20 2005 *)
    Denominator[
     Function[{n},
       Piecewise[{{1/2 (-1 + n) Zeta[n], Mod[n, 2] == 0}, {Zeta[-1 + n],
    Mod[n, 2] == 1}}]] /@ Range[0, 20]] (* Andrey Mitin, Aug 16 2020 *)

A231273 Numerator of zeta(4n)/(zeta(2n) * Pi^(2n)).

Original entry on oeis.org

1, 1, 1, 691, 3617, 174611, 236364091, 3392780147, 7709321041217, 26315271553053477373, 261082718496449122051, 2530297234481911294093, 5609403368997817686249127547, 61628132164268458257532691681, 354198989901889536240773677094747
Offset: 0

Views

Author

Leo Depuydt, Nov 07 2013

Keywords

Comments

Integer component of the numerator of a close variant of Euler's infinite prime product zeta(2n) = Product_{k>=1} (prime(k)^(2n))/(prime(k)^(2n)-1), namely with all minus signs changed into plus signs, as follows: zeta(4n)/zeta(2n) = Product_{k>=1} (prime(k)^(2n))/(prime(k)^(2n)+1). The transcendental component is Pi^(2n).
For a detailed account of the results, including proof and relation to the zeta function, see Links for the PDF file submitted as supporting material.
The reference to Apostol is to a discussion of the equivalence of 1) zeta(2s)/zeta(s) and 2) a related infinite prime product, that is, Product_{sigma>1} prime(n)^s/(prime(n)^s + 1), with s being a complex variable such that s = sigma + i*t where sigma and t are real (following Riemann), using a type of proof different from the one posted below involving zeta(4n)/zeta(2n). On this, see also Hardy and Wright cited below. - Leo Depuydt, Nov 22 2013, Nov 27 2013
The background of the sequence is now described in the link below to L. Depuydt, The Prime Sequence ... . - Leo Depuydt, Aug 22 2014
From Robert Israel, Aug 22 2014: (Start)
Numerator of (-1)^n*B(4*n)*4^n*(2*n)!/(B(2*n)*(4*n)!), where B(n) are the Bernoulli numbers (see A027641 and A027642).
Not the same as abs(A001067(2*n)): they differ first at n=17.
(End)

References

  • T. M. Apostol, Introduction to Analytic Number Theory, Springer, 1976, p. 231.
  • G. H. Hardy and E. M. Wright, An Introduction to the Theory of Numbers, Fourth Edition, Clarendon Press, 1960, p. 255.

Crossrefs

Cf. A231327 (corresponding denominator).
Cf. A114362 and A114363 (closely related results).
Cf. A001067, A046968, A046988, A098087, A141590, A156036 (same number sequence, though in various transformations (alternation of signs, intervening numbers, and so on)).

Programs

  • Maple
    seq(numer((-1)^n*bernoulli(4*n)*4^n*(2*n)!/(bernoulli(2*n)*(4*n)!)),n=0..100); # Robert Israel, Aug 22 2014
  • Mathematica
    Numerator[Table[Zeta[4n]/(Zeta[2n] * Pi^(2n)), {n, 0, 15}]] (* T. D. Noe, Nov 18 2013 *)

A231327 Denominator of rational component of zeta(4n)/zeta(2n).

Original entry on oeis.org

1, 15, 105, 675675, 34459425, 16368226875, 218517792968475, 30951416768146875, 694097901592400930625, 23383376494609715287281703125, 2289686345687357378035370971875, 219012470258383844016431785453125, 4791965046290912124048163518904807546875
Offset: 0

Views

Author

Leo Depuydt, Nov 07 2013

Keywords

Comments

Denominator of a close variant of Euler's infinite prime product zeta(2n) = Product_{k>=1} (prime(k)^(2n))/(prime(k)^(2n)-1), namely with all minus signs changed into plus signs, as follows: zeta(4n)/zeta(2n) = Product_{k>=1} prime(k)^(2n)/(prime(k)^(2n)+1).
For a detailed account of the results in question, including proof and relation to the zeta function, see the PDF file submitted as supporting material in A231273.
The reference to Apostol below is a discussion of the equivalence of 1) zeta(2s)/zeta(s) and 2) a related infinite prime product, that is, Product_{sigma>1} prime(n)^s/(prime(n)^s + 1), with s being a complex variable such that s = sigma + i*t where sigma and t are real (following Riemann), using a type of proof different from the one posted below involving zeta(4n)/zeta(2n). - Leo Depuydt, Nov 22 2013
Denominator of B(4*n)*4^n*(2*n)!/(B(2*n)*(4*n)!) where B(n) are the Bernoulli numbers (see A027641 and A027642). - Robert Israel, Aug 22 2014

References

  • T. M. Apostol, Introduction to Analytic Number Theory, Springer, 1976, p. 231.

Crossrefs

Cf. A231273 (the corresponding numerator).
Cf. A114362 and A114363 (closely related results).
Cf. A001067, A046968, A046988, A098087, A141590, and A156036 (same number sequence as found in numerator, though in various transformations (alternation of sign, intervening numbers, and so on)).
Cf. A027641 and A027642.

Programs

  • Maple
    seq(denom(bernoulli(4*n)*4^n*(2*n)!/(bernoulli(2*n)*(4*n)!)),n=0..100); # Robert Israel, Aug 22 2014
  • Mathematica
    Denominator[Table[Zeta[4 n]/Zeta[2 n], {n, 0, 15}]] (* T. D. Noe, Nov 15 2013 *)
Showing 1-3 of 3 results.