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

A168070
Numbers n with property that n, n^2, n^3, and n^4 have the same set of digits (not counting repetitions).
1
0, 1, 10, 100, 1000, 10000, 100000, 1000000, 10000000, 71624305, 100000000, 103849576, 105823694, 106597243, 108326947, 120463578, 124093657, 126509743, 129306745, 129738560, 139784256, 140786329, 147863502, 148936025, 150973624
OFFSET
1,3
COMMENTS
If n is here then also 10*n is. But not vice versa: if the term n is multiple of 10 then not necessarily n/10 is the term; e.g., 129738560, 172836950, 175438290 are terms but 12973856, 17283695, 17543829 not.
LINKS
PROG
(PARI) isok(n) = s1 = Set(digits(n)); (s1 == Set(digits(n^2))) && (s1 == Set(digits(n^3))) && (s1 == Set(digits(n^4))); \\ Michel Marcus, Oct 15 2013
CROSSREFS
Cf. A029800.
Sequence in context: A232661 A029800 A232662 * A263019 A100061 A125858
KEYWORD
base,nonn
AUTHOR
Zak Seidov, Nov 18 2009
STATUS
approved