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”).

A089919
Numbers k such that 3^prime(k) - 2 is prime.
1
1, 3, 12, 13, 66, 100, 369
OFFSET
1,2
COMMENTS
No additional terms up to n=1000. - Harvey P. Dale, Oct 10 2016
a(8) > 91500, if it exists (based on the data at A014224). - Amiram Eldar, Jul 07 2024
FORMULA
a(n) = A000720(A086218(n)). - Amiram Eldar, Jul 07 2024
MATHEMATICA
Select[Range[370], PrimeQ[3^Prime[#]-2]&] (* Harvey P. Dale, Oct 10 2016 *)
PROG
(PARI) f(n) = for(x=1, n, if(ispseudoprime(3^prime(x)-2), print1(x, ", ")))
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Cino Hilliard, Jan 11 2004
EXTENSIONS
Definition corrected by Jorge Coveiro, Jan 31 2006, Jul 25 2006
STATUS
approved