|
Search: id:A112258
|
|
|
| A112258 |
|
Numbers n not divisible by 10 such that the decimal representation of n^26 does not use every nonzero digit. |
|
+0 1
|
|
| 1, 2, 3, 4, 6, 7, 8, 9, 12, 13, 14, 17, 23, 29, 39, 61, 81, 95, 119, 164, 242, 5193, 9004, 23432, 246968, 8876708, 32886598
(list; graph; listen)
|
|
|
OFFSET
|
1,2
|
|
|
COMMENT
|
Multiples of 10 are excluded because (10*n)^k uses the same nonzero digits as n^k. - No more terms < 10^8. Is the sequence finite?
Similar sequences can be defined for other positive integer exponents. 26 is the smallest exponent such that the corresponding sequence has less than 30 terms < 10^8.
|
|
LINKS
|
Eric Weisstein's World of Mathematics, Pandigital.
Patrick De Geest, The Nine Digits Page..
|
|
EXAMPLE
|
5^26 = 1490116119384765625 uses every digit, so 5 is not in the sequence.
6^26 = 170581728179578208256 does not use digits 3 and 4, so 6 is a term.
|
|
PROGRAM
|
(PARI) {e=26; for(n=1, 35000000, if(n%10>0, v=vector(9); c=0; k=n^e; while(c<9&&k>0, g=divrem(k, 10); k=g[1]; if(g[2]>0&&v[g[2]]==0, v[g[2]]=1; c++)); if(c<9, print1(n, ", "))))}
|
|
CROSSREFS
|
Cf. A089081 (26th powers).
Adjacent sequences: A112255 A112256 A112257 this_sequence A112259 A112260 A112261
Sequence in context: A030706 A101883 A035246 this_sequence A032893 A032852 A031990
|
|
KEYWORD
|
nonn,base,more
|
|
AUTHOR
|
Klaus Brockhaus (klaus-brockhaus(AT)t-online.de), Aug 30 2005
|
|
|
Search completed in 0.002 seconds
|