A137146 Numbers k such that k and k^2 use only the digits 5, 6, 7 and 8.
76, 766, 7666, 76666, 766666, 7666666, 76666666, 766666666, 7666666666, 76666666666, 766666666666, 7666666666666, 76666666666666, 766666666666666, 7666666666666666, 76666666666666666, 766666666666666666, 7666666666666666666, 76666666666666666666, 766666666666666666666
Offset: 1
Examples
766666666666666^2 = 587777777777776755555555555556.
Links
- Jonathan Wellons, Tables of Shared Digits [archived].
- OEIS Index to sequences related to squares.
Crossrefs
Programs
-
Python
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
Extensions
a(15)-a(20) from Pontus von Brömssen, Apr 12 2024
Comments