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

A218373
Numbers n such that (7^n + 4^n)/11 is prime.
0
3, 5, 19, 41, 47, 8231, 33931, 43781, 50833, 53719, 67211
OFFSET
1,1
COMMENTS
All terms are primes.
a(11) > 10^5
MATHEMATICA
Do[ p=Prime[n]; f=(7^p+4^p)/11; If[ PrimeQ[f], Print[p]], {n, 1, 9592} ]
PROG
(PARI) is(n)=ispseudoprime((7^n+4^n)/11) \\ Charles R Greathouse IV, Jun 13 2017
CROSSREFS
KEYWORD
hard,more,nonn
AUTHOR
Robert Price, Oct 27 2012
STATUS
approved