A067813
Start of a record-breaking run of consecutive integers with a number of prime factors (counted with multiplicity) equal to 3.
Original entry on oeis.org
8, 27, 170, 602, 2522, 211673
Offset: 1
a(4)=602 because 602 is the start of a record breaking run of 5 consecutive integers (602 to 606) each having 3 prime factors; i.e. bigomega(n)=A001222(n)=3 for n = 602, ..., 606.
-
bigomega[n_] := Plus@@Last/@FactorInteger[n]; For[n=1; m=l=0, True, n++, If[bigomega[n]==3, l++, If[l>m, m=l; Print[n-l, " ", l]]; l=0]]
Module[{nn=8,po},po=PrimeOmega[Range[5000000]];Flatten[Table[ SequencePosition[ po,PadRight[{},n,3],1],{n,nn}],1]][[All,1]]//Union (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Jun 14 2019 *)
-
show(lim)=my(was,r,ct); forfactored(n=2, lim\1+1, is=vecsum(n[2][, 2])==3; if(is, ct++; if(ct>r, r=ct; print(r" "n[1]-r+1)),ct=0)) \\ Charles R Greathouse IV, Jun 26 2019
A067821
The start of a record-breaking run of consecutive integers with a number of prime factors (counted with multiplicity) equal to 6.
Original entry on oeis.org
64, 5264, 33614, 8706123, 101905622, 4843161124, 25189114374, 412352139170, 1122875553872, 28099912628847, 78661670985666
Offset: 1
a(3)=33614 because 33614 is the start of a record breaking run of 3 consecutive integers (33614 to 33616) each having 6 prime factors; i.e., bigomega(n)=A001222(n)=6 for n = 33614, ..., 33616.
-
bigomega[n_] := Plus@@Last/@FactorInteger[n]; For[n=1; m=l=0, True, n++, If[bigomega[n]==6, l++, If[l>m, m=l; Print[n-l, " ", l]]; l=0]]
A067814
The start of a record-breaking run of consecutive integers with a number of prime factors (counted with multiplicity) equal to 4.
Original entry on oeis.org
16, 135, 1274, 4023, 12122, 204323, 355923, 3405122, 49799889, 202536181, 3195380868, 5208143601, 85843948321, 97524222465
Offset: 1
a(4)=4023 because 4023 is the start of a record breaking run of 4 consecutive integers (4023 to 4026) each having 4 prime factors; i.e. bigomega(n)=A001222(n)=4 for n = 4023, ..., 4026.
-
bigomega[n_] := Plus@@Last/@FactorInteger[n]; For[n=1; m=l=0, True, n++, If[bigomega[n]==4, l++, If[l>m, m=l; Print[n-l, " ", l]]; l=0]]
More terms from
Don Reble, Aug 11 2002, who remarks that the sequence is now complete.
A067822
The start of a record-breaking run of consecutive integers with a number of prime factors equal to 7.
Original entry on oeis.org
128, 29888, 3145310, 296299374, 15605704374, 242576758750, 1981162639374, 126460514648223
Offset: 1
a(3) = 3145310 because 3145310 is the start of a record breaking run of 3 consecutive integers (3145310 to 3145312) each having 7 prime factors; i.e., bigomega(n) = A001222(n) = 7 for n = 3145310, ..., 3145312.
-
bigomega[n_] := Plus@@Last/@FactorInteger[n]; For[n=1; m=l=0, True, n++, If[bigomega[n]==7, l++, If[l>m, m=l; Print[n-l, " ", l]]; l=0]]
A117969
Start of least run of maximal length of consecutive n-almost primes.
Original entry on oeis.org
2, 33, 211673, 97524222465
Offset: 1
a(2) = 33 because 33, 34, 35 is the least run of three consecutive 2-almost primes (semiprimes).
A267361
Numbers n such that 6 consecutive numbers starting with n are products of 5 primes.
Original entry on oeis.org
14845324, 22515700, 22721584, 25693260, 28387952, 28837625, 39664372, 41268874, 45595624, 46631220, 47484279, 50845288, 61818774, 63618020, 65411124, 69358372, 69921004, 69921005, 70195563, 76845965
Offset: 1
A267362
Numbers n such that 5 consecutive numbers starting with n are products of 5 primes.
Original entry on oeis.org
632148, 1380246, 3322374, 3755672, 4294374, 4336548, 4546071, 5491574, 5924148, 6033752, 6884268, 6943472, 8179566, 8223368, 8252628, 8284548, 8544470, 8646504, 8923472, 8928774, 8961325, 9084392
Offset: 1
632148=2*2*3*11*4789, 632149=7*7*7*19*97, 632150=2*5*5*47*269,
632151=3*3*3*13*1801, 632152=2*2*2*31*2549.
-
SequencePosition[PrimeOmega[Range[91*10^5]],{5,5,5,5,5}][[All,1]] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Mar 05 2017 *)
Showing 1-7 of 7 results.
Comments