login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A sequence of triples of squarefree consecutive integers each composed of exactly three primes.
0

%I #14 Sep 08 2022 08:45:48

%S 1309,1310,1311,1885,1886,1887,2013,2014,2015,2665,2666,2667,3729,

%T 3730,3731,5133,5134,5135,6061,6062,6063,6213,6214,6215,6305,6306,

%U 6307,6477,6478,6479,6853,6854,6855,6985,6986,6987,7257,7258,7259,7953,7954,7955,8393

%N A sequence of triples of squarefree consecutive integers each composed of exactly three primes.

%F 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 1309 = 7 * 11 * 17, 1310 = 2 * 5 * 131, 1311 = 3 * 19 * 23.

%t Select[Partition[Range[10000],3,1],AllTrue[#,SquareFreeQ]&&Union[ PrimeOmega[ #]] == {3}&]//Flatten (* _Harvey P. Dale_, Oct 02 2017 *)

%o (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 nonn

%O 1,1

%A Richard L. Peterson (rl_pete(AT)yahoo.com), Oct 01 2009

%E More terms from _Harvey P. Dale_, Oct 02 2017