OFFSET
1,1
EXAMPLE
22^2=484 and 22^3=10648 have no digits in common with 22, but 22^4=234256 has some, so 22 is in the sequence.
PROG
(PARI) a253600(n) = {sd = Set(vecsort(digits(n))); k=2; while (#setintersect(sd, Set(vecsort(digits(n^k)))) == 0, k++); k; }
isok(n) = a253600(n) == 4;
CROSSREFS
KEYWORD
nonn,base,more
AUTHOR
Michel Marcus, Jan 05 2015
STATUS
approved