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 A165936 #14 Sep 08 2022 08:45:48 %S A165936 1309,1310,1311,1885,1886,1887,2013,2014,2015,2665,2666,2667,3729, %T A165936 3730,3731,5133,5134,5135,6061,6062,6063,6213,6214,6215,6305,6306, %U A165936 6307,6477,6478,6479,6853,6854,6855,6985,6986,6987,7257,7258,7259,7953,7954,7955,8393 %N A165936 A sequence of triples of squarefree consecutive integers each composed of exactly three primes. %F A165936 a(3n+1) = A066509(n+1); a(3n+2) = 1 + a(3n+1); a(3n+3) = 1 + a(3n+2). - _R. J. Mathar_, Nov 27 2011 %e A165936 1309 = 7 * 11 * 17, 1310 = 2 * 5 * 131, 1311 = 3 * 19 * 23. %t A165936 Select[Partition[Range[10000],3,1],AllTrue[#,SquareFreeQ]&&Union[ PrimeOmega[ #]] == {3}&]//Flatten (* _Harvey P. Dale_, Oct 02 2017 *) %o A165936 (Magma) a:=[]; f:=func<n|forall{n+s: s in [0, 1, 2] |IsSquarefree(n+s) and #PrimeDivisors(n+s) eq 3}>; for k in [2..8500] do if f(k) then a:=a cat [k, k+1, k+2]; end if; end for; a; // _Marius A. Burtea_, Oct 05 2019 %K A165936 nonn %O A165936 1,1 %A A165936 Richard L. Peterson (rl_pete(AT)yahoo.com), Oct 01 2009 %E A165936 More terms from _Harvey P. Dale_, Oct 02 2017