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

A108259
Consider primes p and q such that p = 3^k + 2 and q = 3^(k+1) + 2 for some k; sequence gives values of p.
0
3, 5, 11, 29, 4782971
OFFSET
1,1
COMMENTS
a(6) > 3^1400000 + 2, if it exists (cf. A051783). - Amiram Eldar, Jul 07 2024
EXAMPLE
3^1 + 2 = 5, 3^2 + 2 = 11.
MATHEMATICA
3^#+2&/@Select[Range[0, 20], AllTrue[{3^#+2, 3^(#+1)+2}, PrimeQ]&] (* The program uses the AllTrue function from Mathematica version 10 *) (* Harvey P. Dale, Nov 01 2015 *)
PROG
(PARI) g(m, n, b) = { for(x=0, n, y=m+b^x+b%2; z=m+b^(x+1)+b%2; if(isprime(y)&isprime(z), print1(p", ") ) ) }
CROSSREFS
Cf. A051783.
Sequence in context: A146243 A262936 A214089 * A093933 A165572 A246901
KEYWORD
nonn
AUTHOR
Cino Hilliard, Jun 29 2005
EXTENSIONS
Offset corrected by Amiram Eldar, Jul 07 2024
STATUS
approved