login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


A088987
Triples of primes between two consecutive prime-indexed 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
OFFSET
1,1
COMMENTS
Conjecture: There cannot be an even number total of primes between two consecutive prime-indexed primes.
The conjecture is true except for the first two prime-indexed 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: A286415 A305835 A019384 * A364458 A217281 A322960
KEYWORD
nonn
AUTHOR
Cino Hilliard, Oct 31 2003
EXTENSIONS
Edited by T. D. Noe, Apr 14 2009
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 23 00:23 EDT 2024. Contains 376140 sequences. (Running on oeis4.)