cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A253606 Numbers n such that digits of n are not present in n^8.

This page as a plain text file.
%I A253606 #11 Jan 08 2015 17:37:05
%S A253606 3,4,8,9,22,33,43,54,59,73,222,233,353,712,777,22224
%N A253606 Numbers n such that digits of n are not present in n^8.
%C A253606 a(17) > 10^9.
%e A253606 4^8 = 65536 which does not contain the digit 4.
%t A253606 a253606[n_] := Block[{f},
%t A253606   f[x_] := MemberQ[IntegerDigits[x^8], #] & /@ IntegerDigits[x];
%t A253606 Select[Range@n, DeleteDuplicates@f[#] == {False} &]]; a253606[10^5] (* _Michael De Vlieger_, Jan 06 2015 *)
%o A253606 (Python)
%o A253606 A253606_list = [n for n in range(1,10**6) if set(str(n)) & set(str(n**8)) == set()]
%Y A253606 Cf. A111116, A253577.
%K A253606 nonn,base,more
%O A253606 1,1
%A A253606 _Chai Wah Wu_, Jan 05 2015