OFFSET
1,2
EXAMPLE
2 is in the sequence because 2^4 = 16, the smallest decimal digit of which is 1.
MATHEMATICA
Select[Range[200], Min[IntegerDigits[#^4]]==1&] (* Harvey P. Dale, Jun 07 2021 *)
PROG
(PARI) select(k->vecmin(digits(k^4))==1, vector(500, k, k))
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Colin Barker, Aug 29 2017
STATUS
approved