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 A054035 #14 Oct 27 2023 22:00:46 %S A054035 1017,1023,1024,1027,1028,1036,1037,1042,1113,1117,1164,1175,1176, %T A054035 1197,1228,1267,1268,1277,1302,1307,1323,1328,1343,1352,1355,1375, %U A054035 1395,1405,1428,1433,1441,1442,1444,1463,1541,1593,1594,1628,1646,1648,1701,1706 %N A054035 Numbers n such that n^2 contains exactly 7 different digits. %H A054035 John Cerkan, <a href="/A054035/b054035.txt">Table of n, a(n) for n = 1..10000</a> %p A054035 f := []; for i from 0 to 200 do if nops({op(convert(i^2,base,10))})=7 then f := [op(f),i] fi; od; f; %t A054035 Select[Range[2000],Count[DigitCount[#^2],0]==3&] (* _Harvey P. Dale_, Jul 28 2012 *) %Y A054035 Cf. A016069, A054031, A054032, A054033, A054034, A054036, A054037, A054038, A054039. %K A054035 nonn,base %O A054035 1,1 %A A054035 _Asher Auel_, Feb 29 2000