A294664 Numbers n such that the largest digit of n^3 is 4.
7, 68, 70, 324, 680, 700, 3240, 6800, 7000, 7618, 31177, 32400, 52308, 68000, 69314, 70000, 76180, 311770, 324000, 353068, 523080, 680000, 693140, 700000, 756658, 761800, 1039247, 2715974, 2732441, 3117700, 3240000, 3511617, 3530680, 4689368, 5230800, 6800000, 6931400, 7000000
Offset: 1
Examples
7 is in the sequence because the largest digit of 7^3 = 343 is 4.
Crossrefs
Programs
-
Maple
select(n -> max(convert(n^3,base,10))=4, [$1..10^6]); # Robert Israel, Nov 13 2017
-
PARI
for(n=1,2e8, vecmax(digits(n^3))==4&&print1(n","))
Comments