login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A159078 Number of perfect powers with distinct digits in base n. 0
1, 1, 9, 8, 25, 50, 88, 297, 657, 1418, 3212, 8662, 24185, 64103, 183718 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,3
LINKS
EXAMPLE
The 8 powers with unique digits in base 5 are 1, 4, 8, 9, 16, 27, 144, and 576; in base 5 these are 1, 4, 13, 14, 31, 102, 1304, and 4301.
PROG
(PARI) okdigs(digs) = {for (i = 1, #digs-1, for (j = i+1, #digs, if (digs[j] == digs[i], return (0); ); ); ); return (1); }
a(n) = {b = n; sols = Set([1]); vmax = b^b; pmax = ceil(log(vmax)/log(2)); for (p = 2, pmax, i = 2; while ((iep = i^p) < vmax, if (okdigs(digits(iep, b)), sols = Set(concat(sols, iep)); ); i++; ); ); #sols; } \\ Michel Marcus, Aug 19 2013
CROSSREFS
Sequence in context: A068823 A264301 A251091 * A253090 A154226 A177187
KEYWORD
nonn,base,more
AUTHOR
Johan Särnbratt, Apr 04 2009
EXTENSIONS
a(11) - a(16) from Johan Särnbratt, Apr 21 2009
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 07:07 EDT 2024. Contains 371964 sequences. (Running on oeis4.)