OFFSET
1,1
COMMENTS
Includes 10^k*p if p is a prime >= 5 and k >= 1. - Robert Israel, Mar 13 2018
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
E.g. 175 = 1{7}5 = 5.5.{7}.
MAPLE
filter:= proc(n) local p;
if isprime(n) then return false fi;
p:= max(numtheory:-factorset(n));
StringTools:-Search(convert(p, string), convert(n, string))<>0
end proc:
select(filter, [$2..1000]); # Robert Israel, Mar 13 2018
MATHEMATICA
d[n_]:=IntegerDigits[n]; t={}; Do[y=d[Max@@First/@FactorInteger[n]]; If[!PrimeQ[n]&&MemberQ[Partition[d[n], Length[y], 1], y], AppendTo[t, n]], {n, 2, 760}]; t (* Jayanta Basu, May 30 2013 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Patrick De Geest, Aug 15 1999
STATUS
approved