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.

A225193 Composite numbers such that every non-identity permutation gives a prime.

Original entry on oeis.org

14, 16, 20, 30, 32, 34, 35, 38, 50, 70, 74, 76, 91, 92, 95, 98, 110, 118, 119, 133, 772, 775, 778, 779, 1118, 3337, 7771, 77779
Offset: 1

Views

Author

Jayanta Basu, May 01 2013

Keywords

Examples

			772 is a member since both 727 and 277 are primes.
		

Crossrefs

Programs

  • Mathematica
    t={}; Do[p=Permutations[IntegerDigits[n]]; c=Length[p]; cn=Length[Select[Table[FromDigits[k],{k,p}], PrimeQ]]; If[!PrimeQ[n] && c>1 && cn==c-1, AppendTo[t,n]], {n,10,100000}]; t
  • Python
    from sympy import isprime
    from itertools import count, islice, permutations
    def agen(): yield from (k for k in count(1) if len(set(s:=str(k)))!=1 and not isprime(k) and all((t:=int("".join(m)))==k or isprime(t) for m in permutations(s)))
    print(list(islice(agen(), 28))) # Michael S. Branicky, Dec 29 2023