|
| |
|
|
A105413
|
|
Numbers p(n) such that both p(n)+2 and p(n+6)-2 are prime numbers, where p(n) is the n-th prime.
|
|
0
| |
|
|
3, 11, 107, 239, 311, 569, 1019, 1031, 1229, 1427, 1997, 2081, 2087, 2111, 2687, 3251, 4049, 4127, 4157, 4229, 4241, 4481, 5231, 5639, 6089, 7307, 7559, 8969, 9629, 10007, 10457, 13691, 13829, 13901, 14249, 14549, 14561, 16187, 16649, 17207
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,1
|
|
|
COMMENTS
| Conjecture: There are an infinite number of primes p(n) such that p(n)-2 and p(n+k)-2 are both prime for all k > 1.
|
|
|
EXAMPLE
| p(6)-2 = 11, p(6+5)-2 = 29, both prime, 1 is in the table.
|
|
|
MATHEMATICA
| For[n = 1, n < 500, n++, If[PrimeQ[Prime[n] + 2], If[PrimeQ[Prime[n + 6] - 2], Print[Prime[n]]]]] - Stefan Steinerberger (stefan.steinerberger(AT)gmail.com), Feb 07 2006
|
|
|
PROG
| (PARI) pnpk(n, m, k) = \ both are prime { local(x, l1, l2, v1, v2); for(x=1, n, v1 = prime(x)+ k; v2 = prime(x+m)+k; if(isprime(v1)&isprime(v2), \ print1(x", ") print1(v1", ") ) ) }
|
|
|
CROSSREFS
| Sequence in context: A007616 A121045 A092245 * A183381 A136985 A131546
Adjacent sequences: A105410 A105411 A105412 * A105414 A105415 A105416
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Cino Hilliard (hillcino368(AT)gmail.com), May 02 2005
|
| |
|
|