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

A309747
Numbers k such that k^k + (k+1)^(k+1) is a semiprime.
0
5, 7, 9, 11, 14, 21, 37, 38, 39, 57, 90, 97, 162
OFFSET
1,1
COMMENTS
Numbers k such that A217435(k+1) = 2.
a(14) >= 235, see FactorDB link.
EXAMPLE
a(1) = 5 because 5^5 + 6^6 = 49781 = 67*743.
PROG
(PARI) for(k=0, 40, if(bigomega(k^k+(k+1)^(k+1))==2, print1(k, ", ")))
CROSSREFS
KEYWORD
nonn,more,hard
AUTHOR
Hugo Pfoertner, Aug 15 2019
STATUS
approved