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!)
A111442 Least perfect power of n containing all the distinct digits of n. 4
1, 32, 243, 64, 25, 36, 16807, 32768, 729, 100, 121, 1728, 371293, 38416, 11390625, 1048576, 1419857, 1889568, 893871739, 3200000, 9261, 234256, 3404825447, 13824, 625, 208827064576, 729, 17210368, 24389, 24300000, 923521, 32768, 35937, 39304, 1838265625 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = n^A373203(n). - Michel Marcus, Jun 01 2024
EXAMPLE
a(12) = 1728 = 12^3, as 144=12^2 does not contain 2.
MATHEMATICA
seq={}; Do[k=1; Until[ ContainsAll[IntegerDigits[n^k], IntegerDigits[n] ], k++ ]; AppendTo[seq, n^k] , {n, 35}]; seq (* James C. McMahon, Jun 01 2024 *)
PROG
(PARI) a(n) = my(k=2, d=Set(digits(n))); while(setintersect(Set(digits(n^k)), d) != d, k++); n^k; \\ Michel Marcus, Jun 03 2024
CROSSREFS
Cf. A373203.
Sequence in context: A351193 A070332 A373291 * A104782 A186774 A223952
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, Aug 03 2005
EXTENSIONS
More terms from Harvey P. Dale, Dec 20 2006
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 July 16 23:11 EDT 2024. Contains 374360 sequences. (Running on oeis4.)