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 A069707 #11 Oct 13 2020 15:57:39 %S A069707 1,4,9,100,121,144,169,400,441,484,676,900,961,1521,1681,1764,4624, %T A069707 4761,5625,9409,10000,10201,10404,10609,11881,12321,14161,14641,16641, %U A069707 17161,19321,19881,40000,40401,40804,41209,43264,44944,47524,49284 %N A069707 Squares with property that swapping first and last digits also gives a square. %H A069707 Harvey P. Dale, <a href="/A069707/b069707.txt">Table of n, a(n) for n = 1..1000</a> %e A069707 1764 and 4761 both are squares hence both are members. %t A069707 Do[t = IntegerDigits[n^2]; u = t; u[[1]] = t[[ -1]]; u[[ -1]] = t[[1]]; t = FromDigits[u]; If[ IntegerQ[ Sqrt[t]], Print[n^2]], {n, 1, 300}] %t A069707 sfldQ[n_]:=Module[{idn=IntegerDigits[n]},IntegerQ[Sqrt[FromDigits[Join[ {idn[[-1]]},Most[ Rest[idn]],{idn[[1]]}]]]]]; Join[{1,4,9},Select[ Range[10,250]^2,sfldQ]] (* _Harvey P. Dale_, Oct 13 2020 *) %Y A069707 Cf. A069706, A069708. %K A069707 nonn,base %O A069707 1,2 %A A069707 _Amarnath Murthy_, Apr 08 2002 %E A069707 Edited and extended by _Robert G. Wilson v_ %E A069707 Edited by _N. J. A. Sloane_, Jan 20 2009