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.

A189684 Number of irregular pairs (p,2n).

Original entry on oeis.org

0, 0, 0, 0, 0, 1, 0, 1, 1, 2, 2, 2, 1, 2, 2, 3, 1, 1, 1, 2, 1, 4, 2, 3, 2, 4, 3, 3, 4, 3, 4, 2, 2, 4, 3, 2, 1, 2, 3, 5, 3, 5, 3, 3, 3, 3, 5, 5, 5, 5, 5, 3, 4, 3, 5, 3, 1, 4, 1, 3, 3, 7, 3, 6, 5, 3, 4, 3, 7, 6, 3, 2, 6, 6, 6, 5, 6, 5, 7, 5, 4, 7, 8, 5, 3, 2, 7
Offset: 1

Views

Author

Jonathan Sondow, Apr 25 2011

Keywords

Comments

a(n) is the number of primes p >= 2n+3 that divide the numerator of the Bernoulli number B_{2n}.

Crossrefs

Programs

  • Mathematica
    Table[p = Select[First /@ FactorInteger[Abs[Numerator[BernoulliB[2n]]]], # >= 2*n+3 &]; Length[p], {n, 35}] (* T. D. Noe, Apr 25 2011 *)