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

A105066
Positive integers n such that n^8 + 1 is semiprime.
14
6, 9, 10, 13, 16, 18, 20, 22, 26, 28, 32, 33, 34, 38, 42, 43, 47, 50, 51, 52, 53, 56, 58, 60, 66, 68, 69, 70, 72, 81, 84, 92, 94, 98, 102, 104, 110, 116, 120, 134, 136, 138, 144, 145, 160, 162, 164, 166, 170, 172, 174, 178, 185, 188, 192, 196, 198, 200, 204, 205, 210
OFFSET
1,1
COMMENTS
n^8 + 1 is an irreducible polynomial over the integers and thus can be prime (1^8+1=2, 2^8+1=257, 4^8+1=65537) as well as semiprime.
LINKS
FORMULA
a(n)^8+1 is an element of A001538.
EXAMPLE
6^8+1 = 1679617 = 17 * 98801,
16^8+1 = 4294967297 = 641 * 6700417,
72^8+1 = 722204136308737 = 12110113 * 59636449 where the two factors have the same number of digits.
MATHEMATICA
fQ[n_] := Flatten[ Table[ #[[2]], {1}] & /@ FactorInteger[n]] == {1, 1}; Select[ Range[220], fQ[ #^8 + 1] &] (* Robert G. Wilson v, Apr 06 2005 *)
Select[Range[300], PrimeOmega[#^8+1]==2&] (* Harvey P. Dale, Nov 19 2018 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Jonathan Vos Post, Apr 05 2005
EXTENSIONS
More terms from Robert G. Wilson v, Apr 06 2005
STATUS
approved