A280644 Numbers k such that k^3 has an odd number of digits and the middle digit is 4.
7, 104, 112, 140, 143, 158, 166, 186, 188, 195, 465, 467, 490, 541, 558, 572, 595, 598, 604, 605, 606, 607, 613, 616, 622, 625, 630, 634, 635, 640, 643, 647, 653, 667, 675, 679, 687, 702, 712, 718, 720, 727, 734, 738, 759, 764, 783, 787, 802, 810, 815, 818
Offset: 1
Examples
7^3 = 3(4)3, 195^3 = 741(4)875, 640^3 = 2621(4)4000
Links
- Lars Blomberg, Table of n, a(n) for n = 1..10000
- Jeremy Gardiner, Middle digit in cube numbers, Seqfan Mailing list, Dec 12 2016.
Crossrefs
Programs
-
Mathematica
Select[Range[1000],OddQ[IntegerLength[#^3]]&&NumberDigit[#^3,(IntegerLength[ #^3]-1)/2]==4&] (* Harvey P. Dale, Aug 12 2021 *)
Comments