OFFSET
0,2
COMMENTS
Smallest m such that A039993(m) = n. - M. F. Hasler, Mar 08 2014
Mike Keith conjectures that a(n) always exists and reports that he has checked this for n <= 66. - N. J. A. Sloane, Jan 25 2008
LINKS
Michael S. Branicky, Table of n, a(n) for n = 0..2702 (terms 1..457 from Robert G. Wilson v)
Michael S. Branicky, Python program for A076449, A072857, A076730, A134596
C. K. Caldwell, The Prime Glossary, Primeval Number
J. P. Delahaye, Primes Hunters, 1379 is very primeval (in French)
Mike Keith, Integers containing many embedded primes
W. Schneider, Primeval Numbers
G. Villemin's Almanach of Numbers, Nombre Primeval de Mike Keith
FORMULA
EXAMPLE
a(10) = 179 because 179 is the least number harboring ten primes (namely 7, 17, 19, 71, 79, 97, 179, 197, 719, 971).
MATHEMATICA
(* first do *) Needs["DiscreteMath`Combinatorica`"] (* then *) f[n_] := Length[ Select[ FromDigits /@ Flatten[ Permutations /@ Subsets[ IntegerDigits[ n]], 1], PrimeQ[ # ] &]]; t = Table[0, {50}]; Do[ a = f[n]; If[a < 50 && t[[a + 1]] == 0, t[[a + 1]] = n], {n, 12500}]; t (* Robert G. Wilson v, Feb 12 2005 *)
PROG
(PARI) A076449(n)=for(m=1, 9e9, A039993(m)==n&&return(n)) \\ Not very efficient. - M. F. Hasler, Mar 08 2014
(Python) # see linked program
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Lekraj Beedassy, Nov 07 2002
EXTENSIONS
Edited by Robert G. Wilson v, Nov 24 2002
Keith link repaired by Charles R Greathouse IV, Aug 13 2009
Definition reworded by M. F. Hasler, Mar 08 2014
a(26) corrected by Robert G. Wilson v, Mar 12 2014
STATUS
approved