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

A057900
Numbers k such that 3^k + k is prime.
3
2, 8, 34, 1532, 18248
OFFSET
1,1
COMMENTS
Note that if n > 2 and n+1 is prime then (by Fermat's theorem) n+1 divides 3^n+n.
If it exists, a(6) > 100000. - Hugo Pfoertner, Mar 01 2024
MATHEMATICA
Do[ If[ PrimeQ[ 3^n + n ], Print[ n ] ], {n, 0, 3000} ]
v={2}; Do[If[EvenQ[n]&&Mod[n, 3]!=0&&!PrimeQ[n+1]&&PrimeQ[3^n+n], v=Append[v, n]; Print[v]], {n, 3, 19000}]
Select[Range[18500], PrimeQ[3^#+#]&] (* Harvey P. Dale, Jul 23 2013 *)
PROG
(PARI) is(n)=ispseudoprime(3^n+n) \\ Charles R Greathouse IV, May 22 2017
CROSSREFS
KEYWORD
nonn,hard,more
AUTHOR
Robert G. Wilson v, Nov 16 2000
EXTENSIONS
18248 from Farideh Firoozbakht, Aug 21 2003
STATUS
approved