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.
%I A137146 #26 Apr 12 2024 18:06:20 %S A137146 76,766,7666,76666,766666,7666666,76666666,766666666,7666666666, %T A137146 76666666666,766666666666,7666666666666,76666666666666, %U A137146 766666666666666,7666666666666666,76666666666666666,766666666666666666,7666666666666666666,76666666666666666666,766666666666666666666 %N A137146 Numbers k such that k and k^2 use only the digits 5, 6, 7 and 8. %C A137146 Generated with DrScheme. %C A137146 The first digit of each term is either 7 or 8 and the last digit is 6. - _Chai Wah Wu_, May 25 2021 %H A137146 Jonathan Wellons, <a href="https://web.archive.org/web/20090206165028/http://jonathanwellons.com/shared-digits/">Tables of Shared Digits</a> [archived]. %H A137146 <a href="/index/Sq#squares">OEIS Index to sequences related to squares</a>. %e A137146 766666666666666^2 = 587777777777776755555555555556. %o A137146 (Python) %o A137146 from itertools import product %o A137146 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 %Y A137146 Cf. A000290 (the squares); A136808, A136809, ..., A137147 for other digit combinations. %Y A137146 Cf. A058469 - A058472 and A058411, ..., A058474 for other digit combinations. %Y A137146 Cf. A277959, A277960, A277961, A295005, ..., A295009 (squares with largest digit = 2, 3, 4, 5, ..., 9). %K A137146 base,nonn %O A137146 1,1 %A A137146 Jonathan Wellons (wellons(AT)gmail.com), Jan 22 2008 %E A137146 a(15)-a(20) from _Pontus von Brömssen_, Apr 12 2024