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”).

A060976
Odd nonprimes c which divide Bernoulli(2*c).
3
1, 25, 35, 49, 65, 77, 85, 91, 95, 115, 119, 121, 125, 133, 143, 145, 155, 161, 169, 175, 185, 187, 203, 205, 209, 215, 217, 221, 235, 245, 247, 259, 265, 287, 289, 295, 299, 301, 305, 319, 323, 325, 329, 335, 341, 343, 355, 361, 365, 371, 377, 391, 395, 403
OFFSET
1,2
COMMENTS
a(n) == +- 1 (mod 6).
First differences: 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24. - Robert G. Wilson v, Jan 26 2017
LINKS
MATHEMATICA
Do[ If[ Mod[ Numerator[ BernoulliB[ 2*n ] ], 2n ] == 0 && ! PrimeQ[ n ], Print[ n ] ], {n, 1, 250, 2} ]
PROG
(PARI) select(n->n%2&!isprime(n)&numerator(bernfrac(2*n))%n==0, vector(1000, i, i)) \\ Charles R Greathouse IV, May 26 2011
CROSSREFS
Sequence in context: A054550 A107472 A193165 * A036320 A339520 A340096
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, May 09 2001
STATUS
approved