|
| |
|
|
A088987
|
|
Triples of primes between two consecutive prime-index-primes.
|
|
0
| |
|
|
19, 23, 29, 43, 47, 53, 71, 73, 79, 163, 167, 173, 193, 197, 199, 337, 347, 349, 409, 419, 421, 521, 523, 541, 569, 571, 577, 601, 607, 613, 719, 727, 733, 971, 977, 983, 1181, 1187, 1193, 1423, 1427, 1429, 1451, 1453, 1459, 1789, 1801, 1811, 2029, 2039, 2053
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,1
|
|
|
COMMENTS
| Conjecture: There cannot be an even number total of primes between two consecutive prime-index-primes.
The conjecture is true except for the first two prime-index primes (3 and 5), which have zero primes between them.
|
|
|
EXAMPLE
| prime(prime(4)) = 17, prime(prime(5)) = 31. 19,23,29 are the "only" three primes between 17 and 31.
|
|
|
PROG
| (PARI) pipprimes(n, m) = { for(x=1, n, c=0; p1 = prime(prime(x)); p2 = prime(prime(x+1)); forprime(y=p1+2, p2-2, c++); if(c==m, forprime(y=p1+2, p2-2, print1(y", "); ); ) ) }
|
|
|
CROSSREFS
| Sequence in context: A076056 A068654 A019384 * A168144 A168670 A019360
Adjacent sequences: A088984 A088985 A088986 * A088988 A088989 A088990
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Cino Hilliard (hillcino368(AT)gmail.com), Oct 31 2003
|
|
|
EXTENSIONS
| Edited by T. D. Noe (noe(AT)sspectra.com), Apr 14 2009
|
| |
|
|