A280645 Numbers k such that k^3 has an odd number of digits and the middle digit is 5.
26, 43, 107, 109, 119, 122, 136, 139, 144, 150, 177, 179, 197, 203, 205, 472, 476, 494, 499, 501, 506, 510, 523, 537, 555, 561, 563, 568, 583, 603, 608, 629, 636, 649, 664, 694, 696, 726, 752, 753, 762, 766, 769, 780, 795, 796, 807, 814, 819, 826, 831, 845
Offset: 1
Examples
26^3 = 17(5)76, 150^3 = 337(5)000, 603^3 = 2192(5)6227
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[900],OddQ[IntegerLength[#^3]]&&IntegerDigits[#^3][[(IntegerLength[ #^3]+1)/2]]==5&] (* Harvey P. Dale, Aug 24 2017 *)
Comments