login

Revision History for A105445

(Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing all changes.
a(n) = the smallest prime p such that p+8 and q+8 are prime; q is the n-th prime after p.
(history; published version)
#5 by N. J. A. Sloane at Thu Oct 19 03:14:41 EDT 2017
EXTENSIONS

Edited by _Don Reble (djr(AT)nk.ca), _, Jun 11 2007

Discussion
Thu Oct 19
03:14
OEIS Server: https://oeis.org/edit/global/2703
#4 by N. J. A. Sloane at Tue Oct 01 17:58:11 EDT 2013
AUTHOR

_Cino Hilliard (hillcino368(AT)gmail.com), _, May 02 2005

Discussion
Tue Oct 01
17:58
OEIS Server: https://oeis.org/edit/global/1955
#3 by N. J. A. Sloane at Sat Nov 10 03:00:00 EST 2007
NAME

First a(n) = the smallest prime p(n)-8 in the progression where such that p(n)-+8 and p(nq+k)-8 are both prime k=1,2.; q is the n-th prime after p.

DATA

3, 5, 3, 11, 5, 3, 3, 23, 89, 11, 11, 5, 3, 3, 59, 29, 11, 11, 5, 3, 23, 5, 3, 11, 29, 5, 3, 29, 11, 59, 71, 5, 3, 5, 3, 29, 5, 3, 89, 23, 11, 233, 5, 3, 23, 5, 3, 23, 11, 71, 5, 3, 59, 5, 3, 23, 173, 149, 101, 131, 11, 29, 23, 5, 3, 101, 479, 11, 11, 5, 3, 3, 53, 71, 233, 71, 59, 53, 29, 23, 71, 101, 173, 191, 59, 11, 29, 5, 3, 23, 11, 71, 5, 3, 5, 3, 29, 53, 11, 263, 29, 5, 3

COMMENTS

Conjecture 1: There are an infinite number of primes p(n)-8 such that p(n)-8 and p(n+k)-8 are both prime for all k=1,2,3... Also, these numbers are components of octal primes. Generally, Conjecture 2: There are an infinite number of primes p(n)-2m such that p(n)-2m and p(n+k)-2m are both prime for all k>0, 2m > 4. Also, these numbers are components of primes that differ by 2m.

EXAMPLE

a(2)=5 because 5+8 and 11+8 are primes.

PROG

(PARI) pnpklist(n, m) = \ both are prime { local(x, l1, l2, v1, v2); for(k=1, n, for(x=1, n, v1 = prime(x)+ m; v2 = prime(x+k)+m; if(isprime(v1)&isprime(v2), \ print1(x", ") print1(v1", "); break; ) ) ) }

CROSSREFS
KEYWORD

uned,obsc,nonn,new

nonn

EXTENSIONS

Edited by Don Reble (djr(AT)nk.ca), Jun 11 2007

#2 by N. J. A. Sloane at Wed Dec 06 03:00:00 EST 2006
KEYWORD

uned,obsc,nonn,new

AUTHOR

Cino Hilliard (hillcino368(AT)hotmailgmail.com), May 02 2005

#1 by N. J. A. Sloane at Tue Jul 19 03:00:00 EDT 2005
NAME

First prime p(n)-8 in the progression where p(n)-8 and p(n+k)-8 are both prime k=1,2..

DATA

3, 5, 3, 11, 5, 3, 3, 23, 89, 11, 11, 5, 3, 3, 59, 5, 3, 23, 5, 3, 11, 29, 5, 3, 29, 11, 59, 5, 3, 29, 5, 3, 89, 11, 23, 5, 3, 11, 59, 5, 3, 23, 149, 101, 11, 29, 5, 3, 101, 11, 11, 5, 3, 3, 53, 71, 233, 71, 59, 53, 29, 23, 71, 101, 11, 29, 5, 3, 23, 11, 71, 5, 3, 5, 3, 29, 11, 263, 5, 3

OFFSET

1,1

COMMENTS

Conjecture 1: There are an infinite number of primes p(n)-8 such that p(n)-8 and p(n+k)-8 are both prime for all k=1,2,3... Also, these numbers are components of octal primes. Generally, Conjecture 2: There are an infinite number of primes p(n)-2m such that p(n)-2m and p(n+k)-2m are both prime for all k>0, 2m > 4. Also, these numbers are components of primes that differ by 2m.

PROG

(PARI) pnpklist(n, m) = \ both are prime { local(x, l1, l2, v1, v2); for(k=1, n, for(x=1, n, v1 = prime(x)+ m; v2 = prime(x+k)+m; if(isprime(v1)&isprime(v2), \ print1(x", ") print1(v1", "); break; ) ) ) }

KEYWORD

uned,obsc,nonn

AUTHOR

Cino Hilliard (hillcino368(AT)hotmail.com), May 02 2005

STATUS

approved