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.

Showing 1-1 of 1 results.

A224400 Composite numbers that become prime when their digits are put in nondecreasing order.

Original entry on oeis.org

20, 30, 32, 50, 70, 74, 76, 91, 92, 95, 98, 110, 130, 170, 172, 175, 176, 190, 194, 200, 203, 209, 217, 230, 232, 272, 275, 290, 292, 296, 300, 301, 302, 310, 319, 320, 322, 323, 329, 332, 370, 371, 374, 376, 391, 392, 394, 395, 398, 407, 437, 470, 473, 475
Offset: 1

Views

Author

Keywords

Comments

Conjecture: a(n) ~ 7.75*n.

Examples

			217 = 7*31, but 127 is prime. 302 = 2*151, but 23 is prime.
		

Crossrefs

Subset of A007935.

Programs

  • Mathematica
    Select[Range[500], ! PrimeQ[#] && PrimeQ[FromDigits[Sort[IntegerDigits[#]]]] &] (* T. D. Noe, Apr 05 2013 *)
  • R
    j=1; y=c(); library(gmp)
    while(length(y)<1000) {
    if(isprime((j=j+1))==0) {
    x=sort(as.numeric(strsplit(as.character(j),spl="")[[1]]))
    if(isprime(paste(x[x>0],collapse=""))>0) y=c(y,j) #drop leading zeros
    }
    }
Showing 1-1 of 1 results.