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

A268067
Numbers k such that 1 + 2^k + 3^k + 5^k is prime.
5
1, 17, 1295, 63445
OFFSET
1,2
COMMENTS
a(4), if it exists, is greater than 50000. - Michael S. Branicky, Mar 31 2023
MATHEMATICA
Select[Range[0, 2000], PrimeQ[1 + 2^# + 3^# + 5^#] &]
PROG
(PARI) lista(nn) = for(n=0, nn, if(ispseudoprime(1 + 2^n + 3^n + 5^n), print1(n, ", "))); \\ Altug Alkan, Jan 25 2016
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Vaclav Kotesovec, Jan 25 2016
EXTENSIONS
a(4) from Michael S. Branicky, Nov 03 2024
STATUS
approved