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.

A261183 Primes having only {4, 7, 9} as digits.

Original entry on oeis.org

7, 47, 79, 97, 449, 479, 499, 797, 947, 977, 997, 4447, 4799, 4999, 7477, 7499, 7949, 9479, 9497, 9749, 9949, 44449, 44497, 44777, 44797, 47497, 47777, 47779, 47797, 47947, 47977, 49477, 49499, 49747, 49999, 74449, 74747, 74779, 74797, 77447, 77477, 77479
Offset: 1

Views

Author

Vincenzo Librandi, Aug 11 2015

Keywords

Comments

A020465, A020466 and A020471 are subsequences.

Crossrefs

Cf. similar sequences listed in A261181.

Programs

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