OFFSET
1,1
FORMULA
a(n) >> x^1.285
EXAMPLE
223 is prime and it has three prime digits 2,2,3;
1237 is prime and it has three prime digits 2,3,7;
MAPLE
stev_sez:=proc(n) local i, tren, st, ans, anstren; ans:=[ ]: anstren:=[ ]: tren:=n: for i while (tren>0) do st:=round( 10*frac(tren/10) ): ans:=[ op(ans), st ]: tren:=trunc(tren/10): end do; for i from nops(ans) to 1 by -1 do anstren:=[ op(anstren), op(i, ans) ]; od; RETURN(anstren); end: ts_stpf:=proc(n) local i, stpf, ans; ans:=stev_sez(n): stpf:=0: for i from 1 to nops(ans) do if (isprime(op(i, ans))='true') then stpf:=stpf+1; # number of prime digits fi od; RETURN(stpf) end: ts_pr_prnt:=proc(n) local i, stpf, ans, ans1, tren; ans:=[ ]: stpf:=0: tren:=1: for i from 1 to n do if ( isprime(i)='true' and ts_stpf(i) = 3) then ans:=[ op(ans), i ]: tren:=tren+1; fi od; RETURN(ans) end: ts_pr_prnt(5000);
MATHEMATICA
Select[Prime[Range[400]], Count[IntegerDigits[#], _?PrimeQ]==3&] (* Harvey P. Dale, Dec 27 2011 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Jani Melik, Apr 11 2004
STATUS
approved