cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A105066 Positive integers n such that n^8 + 1 is semiprime.

This page as a plain text file.
%I A105066 #14 Nov 19 2018 10:44:57
%S A105066 6,9,10,13,16,18,20,22,26,28,32,33,34,38,42,43,47,50,51,52,53,56,58,
%T A105066 60,66,68,69,70,72,81,84,92,94,98,102,104,110,116,120,134,136,138,144,
%U A105066 145,160,162,164,166,170,172,174,178,185,188,192,196,198,200,204,205,210
%N A105066 Positive integers n such that n^8 + 1 is semiprime.
%C A105066 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.
%H A105066 Vincenzo Librandi, <a href="/A105066/b105066.txt">Table of n, a(n) for n = 1..1000</a>
%F A105066 a(n)^8+1 is an element of A001538.
%e A105066 6^8+1 = 1679617 = 17 * 98801,
%e A105066 16^8+1 = 4294967297 = 641 * 6700417,
%e A105066 72^8+1 = 722204136308737 = 12110113 * 59636449 where the two factors have the same number of digits.
%t A105066 fQ[n_] := Flatten[ Table[ #[[2]], {1}] & /@ FactorInteger[n]] == {1, 1}; Select[ Range[220], fQ[ #^8 + 1] &] (* _Robert G. Wilson v_, Apr 06 2005 *)
%t A105066 Select[Range[300],PrimeOmega[#^8+1]==2&] (* _Harvey P. Dale_, Nov 19 2018 *)
%Y A105066 Cf. A000040, A001538, A103854, A104238, A105041.
%K A105066 easy,nonn
%O A105066 1,1
%A A105066 _Jonathan Vos Post_, Apr 05 2005
%E A105066 More terms from _Robert G. Wilson v_, Apr 06 2005