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.

A128388 Emirps with only prime digits (i.e., 2, 3, 5, 7).

Original entry on oeis.org

37, 73, 337, 733, 3257, 3373, 3527, 3733, 7253, 7523, 7577, 7757, 32233, 32257, 32353, 32377, 32537, 33223, 35227, 35257, 35323, 35327, 35537, 72253, 72337, 72353, 72577, 73277, 73327, 73523, 73553, 75223, 75253, 75577, 77237, 77323
Offset: 1

Views

Author

Lekraj Beedassy, Feb 28 2007

Keywords

Comments

7523 is the largest norep emirp with only prime digits. - Harvey P. Dale, Sep 17 2019

Crossrefs

Programs

  • Mathematica
    Select[Prime@Range[10^4], # != IntegerReverse[ # ] && PrimeQ[IntegerReverse[ # ]] && Intersection[IntegerDigits[ # ], {0, 1, 4, 6, 8, 9}] == {} &] (* Ray Chandler, Mar 06 2007; corrected by James C. McMahon, Jun 03 2025 *)
    Table[Select[FromDigits/@Tuples[{2,3,5,7},n],!PalindromeQ[#]&& AllTrue[ {#, IntegerReverse[ #]},PrimeQ]&],{n,2,5}]//Flatten (* Requires Mathematica version 10 or later *)  (* Harvey P. Dale, Sep 17 2019 *)

Extensions

Corrected by Ray Chandler, Mar 06 2007