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!)
A190222 Noncomposite numbers all of whose decimal digits are noncomposite numbers (1,2,3,5,7). 3
1, 2, 3, 5, 7, 11, 13, 17, 23, 31, 37, 53, 71, 73, 113, 127, 131, 137, 151, 157, 173, 211, 223, 227, 233, 251, 257, 271, 277, 311, 313, 317, 331, 337, 353, 373, 521, 523, 557, 571, 577, 727, 733, 751, 757, 773, 1117, 1123, 1151, 1153, 1171, 1213, 1217, 1223 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
Chris Caldwell, The Prime Glossary, Unholey prime
FORMULA
a(n) >> n^k where k = log(10)/log(5) = 1.43067.... - Charles R Greathouse IV, Dec 28 2017
MATHEMATICA
Join[{1}, Select[Range[2000], PrimeQ[#] && Intersection[{0, 4, 6, 8, 9}, IntegerDigits[#]] == {} &]] (* T. D. Noe, May 09 2011 *)
PROG
(Magma) [1] cat [n: n in PrimesUpTo(1223) | Set(Intseq(n)) subset [1, 2, 3, 5, 7]]; // Arkadiusz Wesolowski, Apr 16 2014
(PARI) is(k) = if(!isprime(k) && k != 1, return(0)); setminus(vecsort(digits(k), , 8), [1, 2, 3, 5, 7]) == [] \\ Iain Fox, Dec 28 2017
(PARI) is(n) = if(isprime(n), #setminus(Set(digits(k)), [1, 2, 3, 5, 7])==0, n==1) \\ Charles R Greathouse IV, Dec 28 2017
CROSSREFS
Subsequence of A001742.
Sequence in context: A036962 A350535 A160337 * A012884 A068669 A316412
KEYWORD
nonn,base
AUTHOR
Jaroslav Krizek, May 06 2011
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 March 28 08:19 EDT 2024. Contains 371236 sequences. (Running on oeis4.)