A064209 Numbers k whose sum of digits exceeds the sum of the digits of k^3.
587, 5870, 28847, 28885, 28887, 46877, 48784, 49468, 49639, 49868, 58700, 67687, 79969, 228981, 235856, 288470, 288850, 288870, 467878, 468770, 484887, 487840, 494680, 496390, 498680, 587000, 594587, 676870, 677758, 685767, 736968, 798969
Offset: 1
Links
- Harry J. Smith, Table of n, a(n) for n = 1..90
Programs
-
Mathematica
Select[ Range[ 10^6 ], Apply[ Plus, IntegerDigits[ # ] ] > Apply[ Plus, IntegerDigits[ #^3 ] ] & ]
-
PARI
isok(k)={sumdigits(k) > sumdigits(k^3)} \\ Harry J. Smith, Sep 10 2009