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!)
A355063 Perfect powers whose digits are in nonincreasing order and do not include 0. 0
1, 4, 8, 9, 32, 64, 81, 441, 841, 961, 7744, 7776, 8874441, 9853321, 999887641 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
a(16) > 10^45 if it exists. - Michael S. Branicky, Jun 19 2022
LINKS
PROG
(Python)
from sympy import perfect_power as pp
from itertools import count, islice, combinations_with_replacement as mc
def agen():
yield 1
for d in count(1):
nd = (int("".join(m)) for m in mc("987654321", d))
yield from sorted(filter(pp, nd))
print(list(islice(agen(), 14))) # Michael S. Branicky, Jun 16 2022
(PARI) isok(m) = if (ispower(m), my(d=digits(m)); vecmin(d) && (d == vecsort(d, , 4))); \\ Michel Marcus, Jun 17 2022
CROSSREFS
Sequence in context: A115656 A076705 A306916 * A162752 A076966 A360758
KEYWORD
nonn,base,more
AUTHOR
Jon E. Schoenfield, Jun 16 2022
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 7 06:01 EDT 2024. Contains 374063 sequences. (Running on oeis4.)