OFFSET
1,1
COMMENTS
Distinct prime divisors means that the prime divisors are counted without multiplicity. - Harvey P. Dale, Apr 19 2011
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..10000
FORMULA
MATHEMATICA
pdQ[n_]:=PrimeNu[n]==PrimeNu[n+1]==PrimeNu[n+2]; Select[Range[250], pdQ] (* Harvey P. Dale, Apr 19 2011 *)
Take[Transpose[Flatten[Select[Partition[{#, PrimeNu[#]}&/@Range[250000], 3, 1], #[[1, 2]]==#[[2, 2]]==#[[3, 2]]&], 1]][[1]], {1, -1, 3}] (* Harvey P. Dale, Dec 09 2011 *)
Flatten[Position[Partition[PrimeNu[Range[250]], 3, 1], _?(#[[1]]==#[[2]]== #[[3]]&), {1}, Heads->False]] (* Harvey P. Dale, Oct 30 2013 *)
SequencePosition[PrimeNu[Range[250]], {x_, x_, x_}][[;; , 1]] (* Harvey P. Dale, Jun 12 2024 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved