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”).

A321496
Numbers k such that k and k+1 have at least 6 but not both exactly 6 distinct prime factors.
6
58524465, 64822394, 130578734, 133595384, 143489709, 153124685, 155197965, 156532089, 157955720, 159653409, 165706904, 169075829, 170118234, 175458920, 184867605, 188377475, 193042394, 194236679, 195719810, 199150665, 202429590, 208727805, 209801514, 211588454
OFFSET
1,1
COMMENTS
Complement of A273879 (k and k+1 have exactly 6 distinct prime factors) in A321506 (k and k+1 have at least 6 distinct prime factors).
FORMULA
MATHEMATICA
aQ[n_]:=Module[{v={PrimeNu[n], PrimeNu[n+1]}}, Min[v]>5 && v!={6, 6}]; Select[Range[10^9], aQ] (* Amiram Eldar, Nov 12 2018 *)
PROG
(PARI) is(n)=omega(n)>5&&omega(n+1)>5&&(omega(n)>6||omega(n+1)>6)
CROSSREFS
Cf. A273879, A321506; A321495 (analog for 5 factors).
Sequence in context: A172679 A034612 A015355 * A320211 A320220 A034644
KEYWORD
nonn
AUTHOR
M. F. Hasler, Nov 12 2018
EXTENSIONS
More terms from Amiram Eldar, Nov 12 2018
STATUS
approved