login
A030484
Squares composed of digits {2,5,6}.
3
25, 225, 256, 625, 5625, 55225, 225625, 265225, 266256, 525625, 26265625, 56625625, 525555625, 556252225, 5252625625, 255555525625, 265652622225, 6255626265625, 225255552522256, 562222665225225, 5222566262655625
OFFSET
1,1
COMMENTS
Each term is either 25 or 56 mod 100 (which is used in the Mathematica program below to improve the search speed). - Harvey P. Dale, Jul 02 2016
MATHEMATICA
Select[Flatten[Table[{FromDigits/@(Join[#, {2, 5}]&/@Tuples[{2, 5, 6}, n]), FromDigits/@ (Join[#, {5, 6}]&/@Tuples[{2, 5, 6}, n])}, {n, 0, 14}]], IntegerQ[ Sqrt[#]]&]//Sort (* Harvey P. Dale, Jul 02 2016 *)
CROSSREFS
Cf. A030486.
Sequence in context: A077346 A351470 A045785 * A225135 A038692 A017330
KEYWORD
nonn,base
EXTENSIONS
Extended and corrected by author 03/2000.
STATUS
approved