A239587 Cubes that are cyclops numbers.
0, 74088, 1520875, 1560896, 1860867, 2460375, 4330747, 4410944, 7880599, 123505992, 144703125, 172808693, 177504328, 179406144, 191102976, 194104539, 211708736, 232608375, 241804367, 264609288, 288804781, 295408296, 335702375, 338608873, 368601813, 374805361
Offset: 1
Links
- Colin Barker, Table of n, a(n) for n = 1..1800
Programs
-
Mathematica
cyclpsQ[n_]:=With[{len=IntegerLength[n]},OddQ[len]&&DigitCount[n,10,0]==1&&IntegerDigits[n][[(len+1)/2]]==0]; Join[{0},Select[ Range[ 800]^3,cyclpsQ]] (* Harvey P. Dale, Nov 05 2024 *)
-
PARI
is_cyclops(k) = { if(k==0, return(1)); my(d=digits(k), j); if(#d%2==0 || d[#d\2+1]!=0, return(0)); for(j=1, #d\2, if(d[j]==0, return(0))); for(j=#d\2+2, #d, if(d[j]==0, return(0))); return(1)} s=[]; for(n=0, 2000, if(is_cyclops(n^3), s=concat(s, n^3))); s
Formula
a(n) = A239590(n)^3.
Comments