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.

A248862 Primes p such that 900*p^2 is in the sequence A248861.

Original entry on oeis.org

2, 47, 59, 89, 173, 55439, 561599, 19824479
Offset: 1

Views

Author

Farideh Firoozbakht, Dec 12 2014

Keywords

Comments

From Jason Yuen, Jul 01 2024: (Start)
For p>5, an equivalent condition is (240*p*(p-1))^(240*p*(p-1)) == 1 (mod 2821*(1+p+p^2)).
a(9) > 10^12 if it exists. (End)

Crossrefs

Programs

  • Mathematica
    lastP=2;lst={2};While[lastP<200,If[
    Mod[EulerPhi[900*NextPrime[lastP]^2]^EulerPhi[900*NextPrime[lastP]^2],DivisorSigma[1,900*NextPrime[lastP]^2]]==1,
    AppendTo[lst,NextPrime[lastP]]];lastP=NextPrime[lastP]];lst (* Ivan N. Ianakiev, Dec 15 2014 *)