A347819 Minimal elements for the base-10 representations of the primes greater than 10.
11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97, 227, 251, 257, 277, 281, 349, 409, 449, 499, 521, 557, 577, 587, 727, 757, 787, 821, 827, 857, 877, 881, 887, 991, 2087, 2221, 5051, 5081, 5501, 5581, 5801, 5851, 6469, 6949, 8501
Offset: 1
Examples
277 is in this sequence because none of 2, 7, 27, 77 is a prime > 10. 857 is in this sequence because none of 8, 5, 7, 85, 87, 57 is a prime > 10. 991 is in this sequence because none of 9, 1, 99, 91 is a prime > 10. 149 is not in this sequence because 19 is subsequence of 149 and 19 is a prime > 10. 389 is not in this sequence because 89 is subsequence of 389 and 89 is a prime > 10. 439 is not in this sequence because 43 is subsequence of 439 and 43 is a prime > 10.
Links
- Jinyuan Wang, Table of n, a(n) for n = 1..77
- Curtis Bright, Raymond Devillers, and Jeffrey Shallit, Minimal Elements for the Prime Numbers, Experimental Mathematics 25 (3) (2016), pp. 321-331. DOI:10.1080/10586458.2015.1064048
- Eric Chen, Minimal elements for the base b representations of the primes which are > b
- Eric Chen, Data for minimal elements for the base b representations of the primes which are > b for 2 <= b <= 16
- Eric Chen, Proof for that the data for bases 2, 3, 4, 5, 6, 8, 10, 12 is complete
- Eric Chen, Known values or lower bounds of the largest minimal element for the base b representations of the primes which are > b for 2 <= b <= 36
- Eric Chen, Condensed table for the status of the minimal element for the base b representations of the primes which are > b for 2 <= b <= 16
- Prime Glossary, Minimal prime
- J. Shallit, Minimal primes, J. Recreational Math., 30:2 (2000) pp. 113-117.
Crossrefs
Cf. A071062 (primes > 10 are not required).
Programs
-
PARI
a(n, k, b)=v=[]; for(r=1, length(digits(n, b)), if(r+length(digits(k, 2))-length(digits(n, b))>0 && digits(k, 2)[r+length(digits(k, 2))-length(digits(n, b))]==1, v=concat(v, digits(n, b)[r]))); fromdigits(v, b) iss(n, b)=for(k=1, 2^length(digits(n, b))-2, if(ispseudoprime(a(n, k, b)) && a(n, k, b)>b, return(0))); 1 is(n, b=10)=isprime(n) && n>b && iss(n, b) \\ Test whether n is a minimal element for the base b representations of the primes > b. Default value b = 10 for this sequence. select( {is_A347819(n,b=10)=for(L=2, #n=digits(n,b), forvec(d=vector(L, i, [1,#n]), n[d[1]]&& isprime(fromdigits(vecextract(n,d),b))&& return(L==#n), 2))}, [1..8888]) \\ Better select among primes([1,N]). - M. F. Hasler, May 03 2022
Extensions
Edited by M. F. Hasler, May 03 2022
Comments