A136836 Numbers k such that k and k^2 use only the digits 0, 1, 2 and 9.
0, 1, 10, 11, 100, 101, 110, 1000, 1001, 1010, 1011, 1100, 1101, 10000, 10001, 10010, 10011, 10100, 10110, 11000, 11001, 11010, 100000, 100001, 100010, 100011, 100100, 100101, 100110, 101000, 101001, 101100, 110000, 110001, 110010, 110100, 1000000, 1000001, 1000010, 1000011, 1000100
Offset: 1
Examples
101090009991101^2 = 10219190120000900002099192201.
Links
- Jonathan Wellons, Table of n, a(n) for n = 1..1360
- J. Wellons, Tables of Shared Digits [archived]
Crossrefs
Programs
-
Mathematica
With[{c={0,1,2,9}},Select[FromDigits/@Tuples[c,7],SubsetQ[c,IntegerDigits[#^2]]&]] (* Harvey P. Dale, Feb 11 2024 *)
Comments