A058470 Squares composed of digits {5,8,9}.
9, 9985588595958889, 8555589855588599885889
Offset: 1
Links
- P. De Geest, Index to related sequences
- Hisanori Mishima, Sporadic tridigital solutions
Crossrefs
Cf. A058469.
This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
766666666666666^2 = 587777777777776755555555555556.
from itertools import product A137146_list = [n for n in (int(''.join(d)) for l in range(1,6) for d in product('5678',repeat=l)) if set(str(n**2)) <= set('5678')] # Chai Wah Wu, May 25 2021
Comments