login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A276808
Odd prime numbers p such that p*Bernoulli(p-1) + (p-1)!*(p-1) == 0 (mod p^3).
0
17, 1733, 18433
OFFSET
1,1
COMMENTS
For all other odd primes, the congruence holds mod p^2 only.
PROG
(PARI) lista(nn) = {forprime(p=3, nn, if (!((p*bernfrac(p-1) + (p-1)!*(p-1)) % p^3) , print1(p, ", ")); ); } \\ Michel Marcus, Sep 18 2016
CROSSREFS
Sequence in context: A071826 A055414 A156675 * A088465 A001905 A221322
KEYWORD
nonn,hard,more
AUTHOR
René Gy, Sep 18 2016
STATUS
approved