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.

A260127 Primes having only {2, 3, 8} as digits.

Original entry on oeis.org

2, 3, 23, 83, 223, 233, 283, 383, 823, 883, 2333, 2383, 2833, 3323, 3823, 3833, 8233, 22283, 23333, 23833, 28283, 32233, 32323, 32833, 33223, 38333, 38833, 82223, 82883, 83233, 83383, 83833, 88223, 88883, 222323, 222823, 222883, 223283, 223823, 228223, 228233
Offset: 1

Views

Author

Vincenzo Librandi, Jul 17 2015

Keywords

Comments

A020458 and A020464 are subsequences.

Crossrefs

Cf. similar sequences listed in A260125.

Programs

  • Magma
    [p: p in PrimesUpTo(300000) | Set(Intseq(p)) subset [2, 3, 8]];
  • Mathematica
    Select[Prime[Range[3 10^4]], Complement[IntegerDigits[#], {2, 3, 8}]=={} &]