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

A217320
Numbers n such that (13^n - 2^n)/11 is prime.
22
3, 5, 31, 73, 89, 521, 3943, 8719
OFFSET
1,1
COMMENTS
All terms are primes.
a(9) > 10^5.
MATHEMATICA
Select[ Prime[ Range[1, 100000] ], PrimeQ[ (13^# - 2^#)/11 ]& ]
PROG
(PARI) is(n)=ispseudoprime((13^n-2^n)/11) \\ Charles R Greathouse IV, Jun 06 2017
CROSSREFS
KEYWORD
hard,more,nonn
AUTHOR
Robert Price, Mar 18 2013
STATUS
approved