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.

A308402 Denominators of the sequence of rational numbers Rn+ related to Bernoulli numbers.

Original entry on oeis.org

1, 3, 30, 105, 210, 231, 30030, 2145, 72930, 969969, 9699690, 10140585, 20281170, 22287, 6463230, 7713865005, 15427730010, 90751353, 436514007930, 1641030105, 134564468610, 368217318651, 3682173186510, 3762220429695, 127915494609630, 1546231253523, 819502564367190, 54496920530418135
Offset: 0

Views

Author

Michel Marcus, May 25 2019

Keywords

Comments

The sequence Rn+ is defined by Rn+ = psi(binomial(x+2, 2)^n) where the linear form psi is defined by psi(x^n) = Bernoulli(n).
The companion sequence Rn- is defined by Rn+ = psi(binomial(x+1, 2)^n), and differs at n=1 with value -1/6 instead of 1/3.

Examples

			The sequence Rn+ begins 1, 1/3, 1/30, -1/105, 1/210, -1/231, 191/30030, -29/2145, 2833/72930, ...
		

Crossrefs

Cf. A238813 (numerators of Rn+, for n >0, up to sign).

Programs

  • PARI
    a(n) = my(p=binomial(x+2, 2)^n); denominator(sum(k=0, poldegree(p), bernfrac(k)*polcoef(p, k, x)));