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.

A260829 Primes having only {5, 6, 7} as digits.

Original entry on oeis.org

5, 7, 67, 557, 577, 677, 757, 5557, 5657, 6577, 7577, 7757, 55667, 56767, 57557, 57667, 65557, 65657, 65677, 65777, 67567, 67577, 67757, 67777, 75557, 75577, 75767, 76667, 76757, 76777, 77557, 555557, 555677, 555767, 557567, 565567, 565667, 566557, 566567
Offset: 1

Views

Author

Vincenzo Librandi, Aug 02 2015

Keywords

Comments

A020467 and A020469 are subsequences.

Crossrefs

Cf. similar sequences listed in A260827.

Programs

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