OFFSET
1,1
COMMENTS
All terms are primes.
LINKS
Henri Lifchitz & Renaud Lifchitz, Top probable primes of the form (4^p+3^p)/7
MAPLE
a:=proc(n) if type((3^n+4^n)/7, integer)=true and isprime((3^n+4^n)/7)=true then n else fi end: seq(a(n), n=1..1500); # Emeric Deutsch, Feb 17 2007
MATHEMATICA
Do[ p=Prime[n]; f=(3^p+4^p)/(4+3); If[ PrimeQ[f], Print[p]], {n, 1, 100} ]
PROG
(PARI) f(n)=(3^n + 4^n)/7;
forprime(n=3, 10^5, if(ispseudoprime(f(n)), print1(n, ", ")))
/* Joerg Arndt, Mar 27 2011 */
CROSSREFS
KEYWORD
hard,more,nonn
AUTHOR
Alexander Adamchuk, Feb 14 2007
EXTENSIONS
3 more terms from Emeric Deutsch, Feb 17 2007
2 more terms from Farideh Firoozbakht, Apr 16 2007
Two more terms (13463 and 23929) found by Lelio R Paula in 2008 corresponding to probable primes with 8105 and 14406 digits. Jean-Louis Charton, Oct 06 2010
Two more terms (81223 and 121271) found by Jean-Louis Charton in March 2011 corresponding to probable primes with 48901 and 73012 digits
STATUS
approved