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

A281678
Numbers k that have no digits in common with k^7.
1
3, 7, 8, 33, 43, 77, 93, 272, 332, 662, 7757, 31333
OFFSET
1,1
COMMENTS
All terms have last digit 2, 3, 7 or 8.
Sequence is likely to be finite. If it exists, a(13) > 10^7.
In this sequence, the only terms with no repeated digits are 3, 7, 8, 43, 93. - Altug Alkan, Jan 26 2017
EXAMPLE
43 is a term because 43^7 = 271818611107 has no digit 4 or 3.
MAPLE
select(t -> convert(convert(t, base, 10), set) intersect convert(convert(t^7, base, 10), set) = {},
{seq(seq(10*i+j, j=[2, 3, 7, 8]), i=0..10^4});
MATHEMATICA
Select[Range[40000], Intersection[IntegerDigits[#], IntegerDigits[ #^7]] == {}&] (* Vincenzo Librandi, Jan 27 2017 *)
PROG
(PARI) isok(n) = #setintersect(Set(digits(n)), Set(digits(n^7))) == 0; \\ Michel Marcus, Jan 26 2017
CROSSREFS
Cf. A001015. Contains A253576.
Cf. A281148.
Sequence in context: A152057 A177689 A191611 * A118622 A101366 A217359
KEYWORD
nonn,more,base
AUTHOR
Robert Israel, Jan 26 2017
STATUS
approved