cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-4 of 4 results.

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

Views

Author

James G. Merickel, Oct 20 2009

Keywords

Comments

Tentatively, as of Dec 2012, the likely value of a(6) is 20968. A noteworthy fact, perhaps, is that were this sequence to limit itself to non-titanic primes (ones under 10^999), then it would look the same to the point shown and have the stated tentative value for a(6) as its a(5), despite there being a number of smaller values eventually reaching a 5th prime. - James G. Merickel, Dec 06 2012
a(5)=8338 has not been determined with complete certainty, but is likely correct (See A232657). a(6)=20968 has fairly convincing support, but even finding a good upper bound for a(7) is hard. - James G. Merickel, Jun 14 2014

Examples

			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.
		

Crossrefs

Extensions

a(5) added by James G. Merickel, Feb 06 2014

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

Views

Author

James G. Merickel, Jan 30 2010

Keywords

Comments

Excluding the prime a(n) itself, this sequence concerns stringing together (in decimal notation) values a(n), a(n)-1, a(n)-2, ... to obtain n primes as quickly as possible. A remark (from Jens Kruse Andersen, responsible also for a(4)) that beginning at a prime is more common than what had been done at A152396 is responsible for initiating investigation of this sequence. To be specific, this sequence concerns first instances of numbers resulting in simultaneous primality of concatenations of k numbers where k runs through the first n+1 (the number by itself is prime) odd values not divisible by 3 or ending with digit 9 in decimal (the first condition concerns simple divisibility by 3, while the second results from the small values placing a specific limitation modulo 5). No splitting into two distinct sequences arises depending upon whether or not it is specified that each prime occurs with as few concatenations as possible. This contrasts with what occurs where the number itself need not be prime (and may not be counted). See the comments to A152396 for the complications that arise in that case. - James G. Merickel, Feb 26 2014
Existence of solutions appears provable using Chebotarev's Theorem applied to the rational primes, after first applying the Chinese Remainder Theorem to fixed-length collections. - James G. Merickel, Mar 11 2014

Examples

			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.
		

Crossrefs

Cf. A152396.

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

Views

Author

James G. Merickel, Nov 27 2013

Keywords

Comments

The very simplest example of the type of prime concerned is 43, but 100 (see Example) is the first value to produce 4 primes. 1000 is the first to do so in the fastest way possible. Proper concatenation first excludes 73 from this list, as the stem--initial--value in concatenation is itself excluded from consideration.
8338 is the first value to produce 5 primes, with terminal values 8323, 8293, 8079, 7561 and 6519.

Examples

			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.
		

Crossrefs

Programs

  • PARI
    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

Views

Author

James G. Merickel, Feb 01 2010

Keywords

Comments

Analogous to A152396 with increments replacing decrements.

Examples

			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.
		

Crossrefs

Showing 1-4 of 4 results.