login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A344843 The smallest of three consecutive integers that are products of three or more primes. 2
98, 124, 152, 170, 174, 188, 230, 242, 243, 244, 284, 342, 343, 350, 368, 374, 404, 423, 424, 428, 434, 440, 474, 475, 494, 506, 530, 548, 574, 594, 602, 603, 604, 608, 636, 637, 638, 644, 650, 656, 663, 664, 710, 714, 724, 728, 740, 774, 775, 782, 804, 824 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
98 = 2*7*7, 99 = 3*3*11, 100 = 2*2*5*5. Three consecutive integers 98, 99, and 100 are each products of three or more primes. Thus, 98 is a term.
MATHEMATICA
Select[Range[1002], Total[Transpose[FactorInteger[#]][[2]]] >= 3 && Total[Transpose[FactorInteger[# + 1]][[2]]] >= 3 && Total[Transpose[FactorInteger[# + 2]][[2]]] >= 3 &]
p3pQ[k_]:=Boole[#>2&/@k]=={1, 1, 1}; Position[Partition[PrimeOmega[ Range[ 900]], 3, 1], _?p3pQ]//Flatten (* Harvey P. Dale, Nov 18 2021 *)
PROG
(PARI) is(n) = for(i = 0, 2, if(bigomega(n + i) < 3, return(0))); 1 \\ David A. Corneth, Jun 08 2021
CROSSREFS
Sequence in context: A039491 A283555 A244207 * A109553 A268253 A105405
KEYWORD
nonn
AUTHOR
Tanya Khovanova, Jun 07 2021
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 09:18 EDT 2024. Contains 371935 sequences. (Running on oeis4.)