cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A299172 Primes p such that Ramanujan number tau(p) is divisible by p-1.

Original entry on oeis.org

2, 3, 59, 107
Offset: 1

Views

Author

Seiichi Manyama, Feb 04 2018

Keywords

Comments

a(5) > 10^7.

Crossrefs

Programs

  • Mathematica
    Select[ Prime@ Range@ 30, Mod[ RamanujanTau@#, # - 1] == 0 &] (* Robert G. Wilson v, Feb 11 2018 *)
  • PARI
    isok(p) = isprime(p) && !(ramanujantau(p) % (p-1)); \\ Michel Marcus, Feb 05 2018