OFFSET
1,1
COMMENTS
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
EXAMPLE
114 = 2*3*19.
MATHEMATICA
d[n_]:=IntegerDigits[n]; t={}; Do[le1=Max@@Length/@(t1=d[First/@FactorInteger[n]]); t2=Flatten[Table[Partition[d[n], i, 1], {i, le1}], 1]; If[!PrimeQ[n]&&Intersection[t1, t2]=={}, AppendTo[t, n]], {n, 2, 146}]; t (* Jayanta Basu, May 31 2013 *)
npfsQ[n_]:=Module[{idn=IntegerDigits[n], f=FactorInteger[n][[All, 1]]}, And@@ Table[SequenceCount[idn, IntegerDigits[f[[i]]]]==0, {i, Length[ f]}]]; Select[Range[200], CompositeQ[#] && npfsQ[#]&] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Dec 28 2016 *)
CROSSREFS
KEYWORD
nonn,base,nice
AUTHOR
Patrick De Geest, Aug 15 1999
STATUS
approved