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.

A260268 Primes having only {1, 4, 5} as digits.

Original entry on oeis.org

5, 11, 41, 151, 541, 1151, 1451, 1511, 4111, 4441, 4451, 5441, 11411, 11551, 14411, 14551, 15451, 15511, 15541, 15551, 41141, 41411, 44111, 45541, 51151, 51511, 51551, 54151, 54541, 55411, 55441, 55511, 55541, 114451, 115151, 141511, 141551, 144451, 144511
Offset: 1

Views

Author

Vincenzo Librandi, Jul 23 2015

Keywords

Comments

A020452 and A020453 are subsequences.

Crossrefs

Cf. similar sequences listed in A260266.

Programs

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