OFFSET
1,1
COMMENTS
9949370777987917 is the smallest number k such that the smallest decimal digit of k^2 is 7. - Chai Wah Wu, Sep 08 2017
LINKS
Chai Wah Wu, Table of n, a(n) for n = 1..10001
EXAMPLE
26 is in the sequence because 26^2 = 676, the smallest decimal digit of which is 6.
MATHEMATICA
Select[Range[10^6], Min[IntegerDigits[#^2]]==6 &] (* Vincenzo Librandi, Sep 09 2017 *)
PROG
(PARI) select(k->vecmin(digits(k^2))==6, vector(1000000, k, k))
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Colin Barker, Aug 28 2017
STATUS
approved