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!)
A114261 Numbers k such that the 5th power of k contains exactly 5 copies of each digit of k. 6
961527834, 7351062489, 8105632794, 8401253976, 8731945026, 9164072385, 9238750614, 9615278340, 9847103256, 72308154699, 73510624890, 81056327940, 83170652949, 83792140506, 84012539760, 87319450260, 91602408573, 91640723850, 92387506140, 96152783400, 98471032560 (list; graph; refs; listen; history; text; internal format)
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
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
A114261_list = list(islice(A114261_gen(), 5)) # Chai Wah Wu, Feb 27 2024
CROSSREFS
Sequence in context: A122532 A172605 A015394 * A321489 A168436 A168435
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

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 16 17:00 EDT 2024. Contains 371749 sequences. (Running on oeis4.)