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.

A260831 Primes having only {5, 7, 9} as digits.

Original entry on oeis.org

5, 7, 59, 79, 97, 557, 577, 599, 757, 797, 977, 997, 5557, 5779, 7559, 7577, 7757, 7759, 55579, 55799, 55997, 57557, 57559, 57977, 59557, 59779, 59797, 59957, 59999, 75557, 75577, 75797, 75979, 75997, 77557, 77797, 77977, 77999, 79559, 79579, 79757, 79777
Offset: 1

Views

Author

Vincenzo Librandi, Aug 03 2015

Keywords

Comments

A020467, A020468 and A020471 are subsequences.
Subsequence of A030096.

Crossrefs

Cf. similar sequences listed in A260827.

Programs

  • Magma
    [p: p in PrimesUpTo(2*10^5) | Set(Intseq(p)) subset [5, 7, 9]];
  • Mathematica
    Select[Prime[Range[2 10^5]], Complement[IntegerDigits[#], {5, 7, 9}] == {} &]