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.

A287050 Square array read by antidiagonals upwards: M(n,k) is the initial occurrence of first prime p1 of consecutive primes p1, p2, where p2 - p1 = 2*k, and p1, p2 span a multiple of 10^n, n>=1, k>=1.

Original entry on oeis.org

29, 599, 7, 2999, 97, 47, 179999, 1999, 1097, 89, 23999999, 69997, 21997, 1193, 139, 23999999, 199999, 369997, 23993, 691, 199, 29999999, 19999999, 3199997, 149993, 10993, 199, 113, 17399999999, 19999999, 6999997, 1199999, 139999, 997, 293, 1831
Offset: 1

Views

Author

Hartmut F. W. Hoft, May 18 2017

Keywords

Comments

The unit digits of the numbers in the matrix representation M(n,k) are 9's for column 1, 7's or 9's for column 2, 7's for column 3, 3's or 9's for column 4, and 1's, 3's, 7's or 9's for column 5.
The following matrix terms appear as first terms in sequence
A060229(1) = M(1,1)
A288021(1) = M(1,2)
A288022(1) = M(1,3)
A288024(1) = M(1,4)
A031928(1) = M(1,5)
A158277(1) = M(2,1)
A160440(1) = M(2,2)
A160370(1) = M(2,3)
A287049(1) = M(2,4)
A160500(1) = M(2,5)
A158861(1) = M(3,1).

Examples

			The matrix representation of the sequence with row n indicating the spanned power of 10 and column k indicating the difference of 2*k between the first pair of consecutive primes spanning a multiple of 10^n:
--------------------------------------------------------------------------
n\k   1             2             3             4            5
--------------------------------------------------------------------------
1 |   29            7             47            89           139
2 |   599           97            1097          1193         691
3 |   2999          1999          21997         23993        10993
4 |   179999        69997         369997        149993       139999
5 |   23999999      199999        3199997       1199999      1999993
6 |   23999999      19999999      6999997       38999993     1999993
7 |   29999999      19999999      159999997     659999999    379999999
8 |   17399999999   7699999999    9399999997    8999999993   499999993
9 |   92999999999   135999999997  85999999997   8999999993   28999999999
10|   569999999999  519999999997  369999999997  29999999993  819999999997
...
Every column in the matrix is nondecreasing.
For the first and fourth columns, ceiling(M[n,1]/10^n) and ceiling(M[n,4]/10^n) are divisible by 3, for all n>=1 (see A158277 and A287049).
		

Crossrefs

Formula

M(n,k) = min( p_i : p_(i+1) - p_i = 2*k, p_i and p_(i+1) consecutive primes and p_i < m*10^n < p_(i+1) for some integer m) where p_j is the j-th prime, n>=1 and k>=1.