login
A053967
Squares composed of digits {4,8,9}.
2
4, 9, 49, 484, 4489, 44944, 444889, 499849, 44448889, 449948944, 4444488889, 444444888889, 949488489889, 9988488448849, 44444448888889, 99488994489889, 449448988844944, 4444444488888889, 44484944448898849, 444444444888888889
OFFSET
1,1
MATHEMATICA
Select[Flatten[Table[FromDigits/@Tuples[{4, 8, 9}, n], {n, 10}]], IntegerQ[ Sqrt[#]]&] (* The program generates the first 11 terms of the sequence. To generate all of the shown terms, increase the "n" constant from 10 to 18 but the program will take a long time to run. *) (* Harvey P. Dale, Jan 11 2019 *)
CROSSREFS
Cf. A053966.
Sequence in context: A110481 A030088 A081069 * A028945 A086541 A053965
KEYWORD
nonn,base
AUTHOR
Patrick De Geest, Mar 15 2000
STATUS
approved