The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A371588 Smallest Fibonacci number > 1 such that some permutation of its digits is a perfect n-th power. 2
2, 144, 8, 610, 5358359254990966640871840, 68330027629092351019822533679447, 15156039800290547036315704478931467953361427680642, 23770696554372451866815101694984845480039225387896643963981, 119447720249892581203851665820676436622934188700177088360 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Subsequence of A370071 after reordering (as the sequence is not monotonic; e.g., a(2) > a(3) and a(8) > a(9)). Leading 0 digits are allowed in the perfect power. For example, a(4) = 610 since 016 = 2^4. (If leading 0 digits were not allowed, a(4) would be 160500643816367088.)
LINKS
EXAMPLE
a(1) = 2 since 2 = 2^1.
a(2) = 144 since 144 = 12^2.
a(3) = 8 since 8 = 2^3.
a(4) = 610 since 016 = 2^4.
a(5) = 5358359254990966640871840 since 0735948608251696955804943 = 59343^5
a(6) = 68330027629092351019822533679447 since 00059398947526192142327360782336 = 62464^6.
PROG
(Python)
from itertools import count
from sympy import integer_nthroot
def A371588(n):
a, b = 1, 2
while True:
s = sorted(str(b))
l = len(s)
m = int(''.join(s[::-1]))
u = int(''.join(s))
for i in count(max(2, integer_nthroot(u, n)[0])):
if (k:=i**n) > m:
break
t = sorted(str(k))
if ['0']*(l-len(t))+t == s:
return b
break
a, b = b, a+b
CROSSREFS
Sequence in context: A215187 A101827 A283097 * A304582 A320061 A282296
KEYWORD
nonn,base,more
AUTHOR
Chai Wah Wu, Mar 28 2024
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 May 26 23:01 EDT 2024. Contains 372847 sequences. (Running on oeis4.)