OFFSET
1,1
COMMENTS
Rado showed that for a given Bernoulli number B_n there exist infinitely many Bernoulli numbers B_m having the same denominator. As a special case, if n = 2p where p is an odd prime p == 1 (mod 3), then the denominator of the Bernoulli number B_n equals 6. - Bernd C. Kellner, Mar 21 2018
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
R. Rado, A note on the Bernoullian numbers, J. London Math. Soc. 9 (1934) 88-90.
FORMULA
denominator(Bernoulli(a(n))) = 6. - Bernd C. Kellner, Mar 21 2018
MATHEMATICA
Select[6Range[0, 300]+2, PrimeOmega[#]==2&] (* Harvey P. Dale, Oct 04 2011 *)
PROG
(Magma) IsSemiprime:= func<n | &+[d[2]: d in Factorization(n)] eq 2>; [s: n in [0..210] | IsSemiprime(s) where s is 6*n + 2]; // Vincenzo Librandi, Sep 22 2012
(PARI) 2*select(n->n%3==1, primes(100)) \\ Charles R Greathouse IV, Sep 22 2012
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Jonathan Vos Post and Ray Chandler, Oct 15 2005
STATUS
approved