login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A067012
Absolute composites: every permutation of digits (dropping any leading zeros) is a composite number.
7
4, 6, 8, 9, 12, 15, 18, 21, 22, 24, 25, 26, 27, 28, 33, 36, 39, 40, 42, 44, 45, 46, 48, 49, 51, 52, 54, 55, 56, 57, 58, 60, 62, 63, 64, 65, 66, 68, 69, 72, 75, 77, 78, 80, 81, 82, 84, 85, 86, 87, 88, 90, 93, 94, 96, 99, 102, 105, 108, 111, 114, 116, 117, 120, 122, 123
OFFSET
1,1
EXAMPLE
18 is a term since it is composite and the permutation 81 is composite too.
MATHEMATICA
t={}; Do[l1=Table[FromDigits[k], {k, Permutations[IntegerDigits[n]]}]; If[Select[l1, PrimeQ] == {} && FreeQ[l1, 1] == True, AppendTo[t, n]], {n, 123}]; t (* Jayanta Basu, May 03 2013 *)
CROSSREFS
Cf. A067013.
Sequence in context: A269131 A130074 A304242 * A157942 A122786 A092630
KEYWORD
base,nonn
AUTHOR
Lior Manor, Dec 26 2001
STATUS
approved