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 A264604 #11 Nov 24 2015 01:23:15 %S A264604 16,25,36,49,529,64,729,81,961,100,1156,121,1369,144,1521,169,1764, %T A264604 1849,196,2025,2116,225,23104,24336,256,26244,27225,289,2916,3025, %U A264604 3136,324,3364,3481,35344,361,3721,3844,3969,400,41209,4225,4356,441,45369,4624,4761,484,49284,5041,5184,529,5329,5476 %N A264604 a(n) = smallest square which is a concatenation of n and m, where m is a decimal number. %C A264604 m can be 0 but not 00, so a(9) = 961, in contrast to A030666(9) = 900. %H A264604 N. J. A. Sloane, <a href="/A264604/b264604.txt">Table of n, a(n) for n = 1..10000</a> %p A264604 # Computes 10000 terms %p A264604 for b from 1 to 10000 do %p A264604 sw1:=-1; %p A264604 for n from 0 to 1000000 do %p A264604 len:=length(n); %p A264604 if len=0 then len:=1; fi; %p A264604 t2:=10^len*b+n; %p A264604 if issqr(t2) then sw1:=1; lprint(b,t2); break; fi; od: %p A264604 if sw1 < 0 then lprint("failed at",b); lprint(b,-1); fi; %p A264604 od: %Y A264604 Similar to A030666 but with a more stringent rule. %K A264604 nonn,base %O A264604 1,1 %A A264604 _N. J. A. Sloane_, Nov 24 2015