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

A299172
Primes p such that Ramanujan number tau(p) is divisible by p-1.
3
2, 3, 59, 107
OFFSET
1,1
COMMENTS
a(5) > 10^7.
MATHEMATICA
Select[ Prime@ Range@ 30, Mod[ RamanujanTau@#, # - 1] == 0 &] (* Robert G. Wilson v, Feb 11 2018 *)
PROG
(PARI) isok(p) = isprime(p) && !(ramanujantau(p) % (p-1)); \\ Michel Marcus, Feb 05 2018
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Seiichi Manyama, Feb 04 2018
STATUS
approved