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

A222265
Numbers n such that (13^n + 2^n)/15 is prime.
2
7, 31, 103, 223, 503, 1171, 1973, 4111, 4729
OFFSET
1,1
COMMENTS
All terms are prime.
a(10) > 10^5.
MATHEMATICA
Select[Prime[Range[1, 100000]], PrimeQ[(13^# + 2^#)/15]&]
PROG
(PARI) forprime(p=3, 10^6, if(ispseudoprime((13^p + 2^p)/15), print1(p, ", ") ) ); \\ Joerg Arndt, Jul 29 2013
CROSSREFS
KEYWORD
nonn,hard,more
AUTHOR
Robert Price, May 05 2013
EXTENSIONS
Removed incorrect first term of "2".
STATUS
approved