OFFSET
1,1
COMMENTS
Any composite number contains in its digits at least one of the term of this sequence and there is no smaller set.
REFERENCES
J.-P. Delahaye, "Pour la science", (French edition of Scientific American), Juin 2002, p. 99
J. Shallit, Minimal primes, in J.Recreational Mathematics, vol. 30.2, pp. 113-117,1999-2000
LINKS
J. Shallit, Minimal primes, J. Recreational Mathematics, vol. 30.2, pp. 113-117, 1999-2000.
MATHEMATICA
subs[digits_List] := Select[Subsets[digits], CompositeQ[FromDigits[#]]&] //. {a___List, b_List, c___List, d_List, e___List} /; MemberQ[Subsets[d], b] :> {a, b, c, e};
aa = {};
Do[aa = Union[aa, subs[IntegerDigits[n]]], {n, Select[Range[1000], CompositeQ]}];
A071070 = FromDigits /@ aa (* Jean-François Alcover, Dec 20 2017 *)
CROSSREFS
KEYWORD
fini,full,nice,nonn,base
AUTHOR
Benoit Cloitre, May 26 2002
STATUS
approved