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

A114973
Numbers n such that 5^n + n^5 is a semiprime.
4
1, 2, 4, 6, 8, 9, 84, 288, 628
OFFSET
1,2
COMMENTS
a(10) >= 868. - Hugo Pfoertner, Jul 28 2019
EXAMPLE
2 is OK because 5^2 + 2^5 = 25 + 32 = 57 = 3*19 (semiprime).
MATHEMATICA
Select[Range[100], PrimeOmega[5^# + #^5]==2&] (* Vincenzo Librandi, May 21 2014 *)
PROG
(Magma)IsSemiprime:=func< n|&+[k[2]: k in Factorization(n)] eq 2 >; [n: n in [1..85]|IsSemiprime(5^n+n^5)]; // Vincenzo Librandi, Dec 16 2010
CROSSREFS
KEYWORD
nonn,more,hard
AUTHOR
Zak Seidov, Feb 22 2006
EXTENSIONS
a(8), a(9) from Hugo Pfoertner, Jul 28 2019
STATUS
approved