A112548 Numbers k such that the numerator of Bernoulli(k)/k is (apart from sign) prime.
12, 16, 18, 26, 34, 36, 38, 42, 74, 114, 118, 396, 674, 1870, 4306, 22808
Offset: 1
References
- S. Ramanujan, Some properties of Bernoulli's numbers, J. Indian Math. Soc., 3 (1911), 219-234.
Links
- Bernd Kellner, Program Calcbn - A program for calculating Bernoulli numbers
- Chris Caldwell, Top twenty irregular primes
- K. Ono, Honoring a gift from Kumbakonam, Notices Amer. Math. Soc., 53 (2006), 640-651.
- Simon Plouffe, Primes as sums of irrational numbers, Preprint, 2016.
- Eric Weisstein's World of Mathematics, Irregular Prime
Crossrefs
Programs
-
Maple
A112548 := proc(nmax) local numr; for n from 2 to nmax by 2 do numr := abs(numer(bernoulli(n)/n)) ; if isprime(numr) then print(n) ; fi ; od ; end : A112548(3000) ; # R. J. Mathar, Jun 21 2006
-
Mathematica
Select[Range[2, 5000, 2], PrimeQ[Numerator[BernoulliB[ # ]/# ]]&]
Comments