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.
%I A275023 #9 Nov 23 2016 18:39:51 %S A275023 8,216,1331,2197,4913,9261,15625,35937,59319,68921,117649,185193, %T A275023 421875,531441,658503,704969,1030301,1367631,3723875,5268024,5359375, %U A275023 11390625,13651919,16581375,17779581,19902511,23149125,25672375,29503629,36264691,38958219,40353607 %N A275023 Cubes c such that c + 2 and c - 2 are semiprime. %C A275023 Intersection of A000578 and A105571. %H A275023 K. D. Bajpai, <a href="/A275023/b275023.txt">Table of n, a(n) for n = 1..10000</a> %e A275023 a(1) = 8 = 2^3. Also, 8 + 2 = 10 = 2*5; 8 - 2 = 6 = 2*3; both are semiprime. %e A275023 a(2) = 216 = 6^3. Also, 216 + 2 = 218 = 2*109; 216 - 2 = 214 = 2*107; both are semiprime. %t A275023 Select[Table[n^3, {n, 1000}], PrimeOmega[# + 2] == 2 && PrimeOmega[# - 2] == 2 &] %o A275023 (PARI) for (n = 1, 1000, s = n^3; if(bigomega (s+2) == 2 && bigomega (s-2) == 2, print1 (s, ", "))) %Y A275023 Cf. A000578, A001358, A105571, A278022. %K A275023 nonn %O A275023 1,1 %A A275023 _K. D. Bajpai_, Nov 12 2016