A105078 Positive integers n such that n^10 + 1 is semiprime.
4, 16, 26, 54, 110, 120, 126, 260, 314, 420, 444, 470, 570, 646, 714, 890, 946, 1010, 1294, 1306, 1394, 1640, 1674, 1794, 1920, 1964, 2116, 2174, 2360, 2430, 2624, 2666, 2884, 2924, 3094, 3106, 3174, 3220, 3504, 3686, 3826, 3884, 3924, 4046, 4540, 4700
Offset: 1
Examples
4^10+1 = 1048577 = 17 * 61681, 16^10+1 = 1099511627777 = 257 * 4278255361, 1010^10+1 = 1104622125411204510010000000001 = 1020101 * 1082855644108970101989901.
Links
- Robert Price, Table of n, a(n) for n = 1..1105
Crossrefs
Programs
-
Mathematica
Select[ Range[5000], PrimeQ[ #^2 + 1] && PrimeQ[(#^10 + 1)/(#^2 + 1)] &] (* Robert G. Wilson v, Apr 08 2005 *) Select[Range[4700], PrimeOmega[#^10+1]==2&] (* Harvey P. Dale, Jan 13 2013 *)
Extensions
More terms from Robert G. Wilson v, Apr 08 2005
Comments