A114260 Numbers k such that the 4th power of k contains exactly 4 copies of each digit of k.
5702631489, 7264103985, 7602314895, 7824061395, 8105793624, 8174035962, 8304269175, 8904623175, 8923670541, 9451360827, 9785261403, 9804753612, 9846032571, 57026314890, 59730829461, 60947591328, 64017823995, 65190218436, 67024081935, 70645192839, 72641039850, 74991208356
Offset: 1
Examples
5702631489 is a term since its 4th power 1057550783692741389295697108242363408641 contains four 5's, four 7's, four 0's and so on.
Links
- Chai Wah Wu, Table of n, a(n) for n = 1..69 (terms 1..53 from David A. Corneth)
- Carlos Rivera, Puzzle 971. The cube of N such that..., The Prime Puzzles & Problems Connection.
Programs
-
Python
from itertools import count, islice from sympy import integer_nthroot def A114260_gen(): # generator of terms for l in count(1): a = integer_nthroot(10**(4*l-1),4)[0] if (a9:=a%9): a += 9-a9 for b in range(a,10**l,9): if sorted(str(b)*4)==sorted(str(b**4)): yield b A114260_list = list(islice(A114260_gen(), 5)) # Chai Wah Wu, Feb 27 2024
Extensions
a(14) from Ray Chandler, Aug 24 2023
More terms from David A. Corneth, Aug 30 2023
Comments