A294665 Numbers n such that the largest digit of n^3 is 5.
5, 8, 50, 74, 80, 81, 107, 171, 177, 237, 351, 378, 468, 487, 500, 605, 684, 737, 740, 800, 810, 1064, 1070, 1271, 1311, 1365, 1474, 1605, 1645, 1710, 1724, 1758, 1770, 2247, 2364, 2370, 2474, 2485, 2824, 2885, 2925, 3247, 3510, 3780, 4680, 4718, 4870, 4934, 5000, 5247
Offset: 1
Examples
8 is in the sequence because the largest digit of 8^3 = 512 is 5.
Crossrefs
Programs
-
PARI
for(n=1,2e8, vecmax(digits(n^3))==5&&print1(n","))
Comments