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.

A245483 Semiprimes of the form m^10 - m^9 + m^8 - m^7 + m^6 - m^5 + m^4 - m^3 + m^2 - m + 1.

This page as a plain text file.
%I A245483 #15 Oct 10 2018 11:54:27
%S A245483 44287,838861,247165843,3138105961,269971011311,540609741211,
%T A245483 1034834473201,3382547898907,5824512944911,9752380952381,
%U A245483 25405143539623,91699453500601,406683658856861,794014903012651,2005395532515211,7936895933061811,10230009756097561,13103072183720201
%N A245483 Semiprimes of the form m^10 - m^9 + m^8 - m^7 + m^6 - m^5 + m^4 - m^3 + m^2 - m + 1.
%C A245483 All the terms in sequence are odd semiprimes, but none is congruent to 5 or 9 (mod 10).
%H A245483 K. D. Bajpai, <a href="/A245483/b245483.txt">Table of n, a(n) for n = 1..14530</a>
%e A245483 m = 3: m^10 - m^9 + m^8 - m^7 + m^6 - m^5 + m^4 - m^3 + m^2 - m + 1 = 44287 = 67 * 661, which is semiprime and appears in the sequence.
%e A245483 m = 7: m^10 - m^9 + m^8 - m^7 + m^6 - m^5 + m^4 - m^3 + m^2 - m + 1 = 247165843 = 23 * 10746341, which is semiprime and appears in the sequence.
%t A245483 A245483 = {}; k = n^10 - n^9 + n^8 - n^7 + n^6 - n^5 + n^4 - n^3 + n^2 - n + 1; Do[If[PrimeOmega[k] == 2, AppendTo[A245483, k]], {n, 100}]; A245483
%t A245483 Select[Table[1-n+n^2-n^3+n^4-n^5+n^6-n^7+n^8-n^9+n^10,{n,100}],PrimeOmega[ #] ==2&] (* _Harvey P. Dale_, Oct 10 2018 *)
%o A245483 (PARI)
%o A245483 for(n=1,10^3,s=sum(i=0,10,(-n)^i);if(bigomega(s)==2,print1(s,", "))) \\ _Derek Orr_, Aug 03 2014
%Y A245483 Cf. A001358, A162861, A245393.
%K A245483 nonn
%O A245483 1,1
%A A245483 _K. D. Bajpai_, Jul 23 2014