A043298 Numbers n such that B(6*n) has denominator 42 where B(2k) are the Bernoulli numbers.
1, 19, 31, 43, 59, 67, 71, 79, 97, 109, 127, 139, 149, 157, 163, 167, 193, 197, 199, 211, 223, 227, 229, 269, 307, 317, 337, 349, 353, 361, 379, 383, 389, 401, 409, 421, 433, 439, 449, 457, 463, 479, 487, 499, 521, 523, 541, 547, 563, 569, 571, 587, 589, 599
Offset: 1
Links
- Enrique Pérez Herrero, Table of n, a(n) for n=1..50000
Programs
-
Mathematica
Do[s=1+Divisors[n]; s1=Flatten[Position[PrimeQ[s], True]]; s2=Part[s, s1]; If[Equal[s2, {2, 3, 7}], Print[n/6]], {n, 1, 10000}] (* Alexander Adamchuk, Jul 28 2006 *) Select[Range[600],Denominator[BernoulliB[6#]]==42&] (* Harvey P. Dale, Jan 09 2024 *)
Extensions
Corrected and extended by Ralf Stephan, Oct 21 2002
More terms from Alexander Adamchuk, Jul 28 2006
Comments