login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A094068
Lessers of twin prime pairs whose greater has a prime prime index.
2
3, 29, 107, 239, 281, 857, 1061, 1151, 1619, 1667, 1721, 2267, 2339, 2801, 2999, 3167, 3257, 3467, 3557, 4271, 4337, 4547, 4799, 4931, 5279, 5501, 5849, 5867, 6359, 6659, 6689, 7349, 8009, 8219, 8231, 8387, 9857, 10007, 10859, 13001, 13691, 15269, 15971
OFFSET
1,1
LINKS
EXAMPLE
107 is the lesser of twin prime pair (107,109) the prime index of 109 (the greater) is 29.
MATHEMATICA
seq = {}; p = prv = 2; k = 1; Do[p = NextPrime[p]; k++; If[p == prv + 2 && PrimeQ[k], AppendTo[seq, prv]]; prv = p, {10^3}]; seq
Select[Partition[Prime[Range[2000]], 2, 1], #[[2]]-#[[1]]==2&&PrimeQ[PrimePi[ #[[2]]]]&] [[All, 1]] (* Harvey P. Dale, Nov 30 2022 *)
PROG
(PARI) lista(n) = {forprime(x=2, n, y=prime(x)- 2; if(isprime(y), print1(y", ")))}
CROSSREFS
KEYWORD
nonn
AUTHOR
Cino Hilliard, May 31 2004
EXTENSIONS
Offset corrected by Amiram Eldar, Dec 27 2019
STATUS
approved