OFFSET
1,1
COMMENTS
Some of the early terms of the sequence are also pandigital, i.e. they contain all the 10 digits once. This is probably accidental, but quite curious!
All terms are divisible by 9. First decimal digit of a term is 6 or larger. - Chai Wah Wu, Feb 27 2024
LINKS
Chai Wah Wu, Table of n, a(n) for n = 1..26
EXAMPLE
E.g. 961527834 is in the sequence since its 5th power 821881685441327565743977956591832631269739424 contains five 9's, five 6's, five 1's and so on.
PROG
(Python)
from itertools import count, islice
from sympy import integer_nthroot
def A114261_gen(): # generator of terms
for l in count(1):
a = integer_nthroot(10**(5*l-1), 5)[0]
if (a9:=a%9):
a += 9-a9
for b in range(a, 10**l, 9):
if sorted(str(b)*5)==sorted(str(b**5)):
yield b
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Giovanni Resta, Nov 18 2005
EXTENSIONS
a(8)-a(9) from Ray Chandler, Aug 23 2023
a(10)-a(21) from Chai Wah Wu, Feb 28 2024
STATUS
approved