OFFSET
1,1
COMMENTS
Sequence is finite since it is a subsequence of a finite sequence (A071070).
This is complete: there are only 16 terms in the sequence.
EXAMPLE
371 is in this sequence because it's composite and none of the numbers 1, 3, 7, 13, 17, 31, 37, 137, 173, 317, 713 and 731 is composite.
MATHEMATICA
Select[Range[4, 10^3], Function[n, And[CompositeQ@ n, NoneTrue[DeleteCases[Flatten@ Map[If[Length@ # > 1, FromDigits /@ Permutations@ #, #] &, Rest@ Subsets@ IntegerDigits@ n], _?(# == n &)], CompositeQ]]]] (* Michael De Vlieger, Nov 13 2018 *)
CROSSREFS
KEYWORD
nonn,base,fini,full
AUTHOR
Daniel Lignon, Oct 19 2018
STATUS
approved