OFFSET
1,1
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000 (first 150 terms from Lava)
Gil Broussard, Integers containing prime factors as substrings.
FORMULA
a(n) << n log n. - Charles R Greathouse IV, Jul 09 2015
EXAMPLE
1675 = 5*5*67 -> 167{5} and 1{67}5.
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]&&Complement[t1, t2]=={}, AppendTo[t, n]], {n, 20, 5850}]; t (* Jayanta Basu, May 31 2013 *)
PROG
(PARI) substr(m, n)=my(a=#Str(m), b=#Str(n)); for(i=0, a-b, if(valuation(m-n, 10)>=b, return(1)); m\=10); 0
is(n)=if(isprime(n)||n<9, return(0)); my(f=factor(n)[, 1]); for(i=1, #f, if(!substr(n, f[i]), return(0))); 1 \\ Charles R Greathouse IV, Jul 09 2015
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Patrick De Geest, Aug 15 1999
STATUS
approved