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.

A245044 Semiprimes with digits in descending order that differ exactly by 2.

This page as a plain text file.
%I A245044 #15 Jul 16 2014 10:59:36
%S A245044 4,6,9,86,753,7531,9753,97531
%N A245044 Semiprimes with digits in descending order that differ exactly by 2.
%e A245044 7531 is in the sequence because it is semiprime 7531 = 17*443 and 7-5 = 5-3 = 3-1 = 2.
%e A245044 97531 is in the sequence because it is semiprime 97531 = 7*13933 and 9-7 = 7-5 = 5-3 = 3-1 = 2.
%t A245044 Sort[Flatten[Table[Select[FromDigits/@Partition[Range[9, 0, -2], n, 1], PrimeOmega[#]==2 &], {n, 1000}]]]
%o A245044 (PARI) for(d=1,5,for(s=1,11-2*d,t=sum(i=1,d,(s-2+2*i)*10^i)/10; if(bigomega(t)==2, print1(t", ")))) \\ _Charles R Greathouse IV_, Jul 16 2014
%Y A245044 Cf. A215477, A215478.
%K A245044 nonn,base,easy,fini,full
%O A245044 1,1
%A A245044 _Vincenzo Librandi_, Jul 10 2014
%E A245044 a(1), a(2), a(4) from _Charles R Greathouse IV_, Jul 16 2014