OFFSET
1,1
EXAMPLE
38 is in the sequence because 38^3 = 54872, the smallest decimal digit of which is 2.
MATHEMATICA
Select[Range[700], Min[IntegerDigits[#^3]]==2&] (* Harvey P. Dale, Feb 23 2023 *)
PROG
(PARI) select(k->vecmin(digits(k^3))==2, vector(1000, k, k))
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Colin Barker, Aug 28 2017
STATUS
approved