A291627 Numbers k such that 2 is the smallest decimal digit of k^2.
5, 15, 16, 17, 18, 23, 25, 27, 57, 65, 68, 73, 75, 77, 82, 85, 156, 157, 158, 162, 163, 164, 165, 166, 167, 168, 172, 173, 185, 193, 206, 207, 208, 215, 218, 222, 223, 232, 233, 235, 273, 275, 277, 278, 282, 287, 288, 292, 307, 315, 472, 473, 474, 475, 476
Offset: 1
Examples
278 is in the sequence because 278^2 = 77284, the smallest decimal digit of which is 2.
Programs
-
PARI
select(k->vecmin(digits(k^2))==2, vector(1000, k, k))