OFFSET
1,2
COMMENTS
Note that n^5 + 3 is irreducible over integers, unlike n^5 + 1 as in A104238.
EXAMPLE
1^5 + 3 = 4 = 2 * 2
2^5 + 3 = 35 = 5 * 7
4^5 + 3 = 1027 = 13 * 79
6^5 + 3 = 7779 = 3 * 2593
11^5 + 3 = 161054 = 2 * 80527
14^5 + 3 = 89 * 6043
100^5 + 3 = 10000000003 = 7 * 1428571429
1000^5 + 3 = 1000000000000003 = 14902357 * 67103479
1000000^5 + 3 = 1000000000000000000000000000003 = 1859827 * 537684419034673655130289.
MAPLE
with(numtheory): a:=proc(n) if bigomega(n^5+3)=2 then n else fi end: seq(a(n), n=1..400); # Emeric Deutsch, Jul 16 2005
MATHEMATICA
Select[Range[400], PrimeOmega[#^5+3]==2&] (* Harvey P. Dale, Jul 16 2017 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Jonathan Vos Post, Jul 12 2005
EXTENSIONS
More terms from Emeric Deutsch, Jul 16 2005
STATUS
approved