A152397
Similar to A152396, but here the requirement is for finding any n primes, not necessarily from the shortest concatenations.
Original entry on oeis.org
4, 10, 73, 100, 8338
Offset: 1
21, 32, and 321 are all composite, and 43 is prime. So a(1)=4. Then the first stem resulting in 2 primes is 10, with 109 and 10987 both prime. So a(2)=10. 73 produces 4 primes in this way if improper concatenation (including 73 itself) is included, but it is not. Since stem values from 11 through 72 never produce more than 2 primes properly, a(3)=73.
A172257
The prime that gives n primes via concatenation of decremented numbers in sequence as quickly as possible.
Original entry on oeis.org
7, 73, 1476193, 10087249723, 29112561133
Offset: 1
a(1)=7, as 76543 is prime, and none of the smaller primes give such an example, concatenation beginning with 2 only having the case 3*7, beginning with an odd prime necessarily requiring 5 total concatenated values to avoid divisibility by either 2 or 3, and 54321 also being composite. a(2)=73, as 7372717069 and 73727170696867 are both prime, with no smaller prime resulting in two primes this quickly. And a(3)=1476193, as this is the first prime for which primes arise for all three cases of concatenation of the 5, 7 and 11 incrementally decreasing numbers starting with it.
A232657
Numbers producing at least 4 primes by proper concatenation of decrements.
Original entry on oeis.org
100, 874, 1000, 1286, 3040, 3721, 3805, 3922, 4468, 6412, 7014, 7852, 8338
Offset: 1
100 yields four primes in this way: 100 99, 100 99 98 97, 100 99 98 97 96 95 94 93 92 91, and 100 99 98 97...62 61. As the first value to do so properly, a(1)=100.
-
is(n)=my(t=Str(n),s=4); while(n--,t=Str(t,n); if(isprime(eval(t)) && s--==0, return(1))); 0 \\ Charles R Greathouse IV, Feb 18 2014
A172374
The first number generating n primes through the concatenation of numbers increasing in minimal increments in the quickest way.
Original entry on oeis.org
2, 278, 1826, 4498070, 2645182700
Offset: 1
278279 and 278279280281 are prime and no number <278 gives primes when treated similarly. Concatenation of 2, 4, 8, 10, and 14 numbers give primes beginning with 2645182700.
Showing 1-4 of 4 results.
Comments