login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A092619 Numbers with property that number of prime digits is prime. 1
22, 23, 25, 27, 32, 33, 35, 37, 52, 53, 55, 57, 72, 73, 75, 77, 122, 123, 125, 127, 132, 133, 135, 137, 152, 153, 155, 157, 172, 173, 175, 177, 202, 203, 205, 207, 212, 213, 215, 217, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
A subset of A085557 from the 4th term.
Upper relative density in the primes is 1; lower relative density in the primes is 0. - Charles R Greathouse IV, Nov 14 2010
LINKS
EXAMPLE
22 has two prime digits and their number 2 is prime, so 22 is a term.
222 has three prime digits and their number 3 is prime, so 222 is a term.
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:=proc(n) local i, stpf, ans, ans1; ans:=[ ]: stpf:=0: for i from 1 to n do if (isprime( ts_stpf(i) )='true') then ans:=[ op(ans), i ]: fi od; RETURN(ans) end: ts_pr(300);
# second Maple program:
q:= n-> isprime(nops(select(isprime, convert(n, base, 10)))):
select(q, [$1..500])[]; # Alois P. Heinz, Feb 08 2023
MATHEMATICA
Select[Range[250], PrimeQ[Count[IntegerDigits[#], _?PrimeQ]]&] (* Harvey P. Dale, Nov 29 2011 *)
PROG
(Python)
from itertools import count, islice
from sympy import isprime
def A092619_gen(startvalue=1): # generator of terms >= startvalue
return filter(lambda n:isprime(sum(1 for d in str(n) if d in {'2', '3', '5', '7'})), count(max(startvalue, 1)))
A092619_list = list(islice(A092619_gen(), 20)) # Chai Wah Wu, Feb 08 2023
CROSSREFS
Sequence in context: A058814 A034895 A106582 * A092624 A254751 A260993
KEYWORD
nonn,base
AUTHOR
Jani Melik, Apr 11 2004
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)