login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A064209 Numbers k whose sum of digits exceeds the sum of the digits of k^3. 5
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MATHEMATICA
Select[ Range[ 10^6 ], Apply[ Plus, IntegerDigits[ # ] ] > Apply[ Plus, IntegerDigits[ #^3 ] ] & ]
PROG
(PARI) SumD(x)= { local(s); s=0; while (x>9, s+=x-10*(x\10); x\=10); return(s + x) } { n=0; for (m=1, 10^9, if (SumD(m) > SumD(m^3), write("b064209.txt", n++, " ", m); if (n==90, break)) ) } \\ Harry J. Smith, Sep 10 2009
CROSSREFS
Sequence in context: A142836 A093229 A003539 * A113509 A252387 A186395
KEYWORD
base,nonn
AUTHOR
Robert G. Wilson v, Sep 21 2001
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 23 04:43 EDT 2024. Contains 374544 sequences. (Running on oeis4.)