login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A255506
Denominator of Bernoulli(2n)/(2n!).
1
2, 12, 120, 504, 1440, 3168, 3931200, 8640, 41126400, 579156480, 2395008000, 1001548800, 2615348736000, 5748019200, 21670032384000, 7491404919398400, 21341245685760000, 251073478656000, 24574743184592240640000, 76828484468736000, 65834328341259878400000
OFFSET
0,1
EXAMPLE
The sequence Bernoulli(2n)/(2n!) (n >= 0) begins 1/2, 1/12, -1/120, 1/504, -1/1440, 1/3168, -691/3931200, 1/8640, -3617/41126400, ...
MATHEMATICA
Table[Denominator[BernoulliB[2 n]/(2 n!)], {n, 0, 25}]
PROG
(Magma) [Denominator(Bernoulli(2*n)/(2*Factorial(n))): n in [0..25]]; // Vincenzo Librandi, Feb 24 2015
(PARI) a(n) = denominator(bernfrac(2*n)/(2*n!)); \\ Michel Marcus, Feb 24 2015
(Sage) [denominator(bernoulli(2*n)/(2*factorial(n))) for n in (0..25)] # Bruno Berselli, Feb 24 2015
CROSSREFS
Cf. A255505 (numerator).
Sequence in context: A328857 A373532 A295864 * A095717 A089431 A119701
KEYWORD
nonn,frac
AUTHOR
STATUS
approved