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”).

A281148
Numbers k such that k and k^6 have no digits in common.
1
2, 3, 8, 9, 13, 14, 22, 33, 44, 52, 72, 77, 87, 92, 222, 322, 622, 7737, 7878, 30302, 44449, 72777, 844844, 44744744
OFFSET
1,1
COMMENTS
0, 1, 5, 6 cannot be the last digit of any term. [0 added to list by Jon E. Schoenfield, Jan 29 2017]
The only terms with no repeated digits are 2, 3, 8, 9, 13, 14, 52, 72, 87, 92.
EXAMPLE
92 is a term because 92^6 = 606355001344 has no digit 2 or 9.
MATHEMATICA
fQ[n_] := Intersection[IntegerDigits[n], IntegerDigits[n^6]] == {}; Select[ Range@45000000, Mod[#, 5] > 1 && fQ@# &] (* Robert G. Wilson v, Jan 29 2017 *)
PROG
(PARI) isok(n) = #setintersect(Set(digits(n)), Set(digits(n^6))) == 0;
CROSSREFS
Sequence in context: A075190 A224225 A283160 * A284791 A281111 A301917
KEYWORD
nonn,base,more
AUTHOR
Robert Israel and Altug Alkan, Jan 27 2017
STATUS
approved