cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A064209 Numbers k whose sum of digits exceeds the sum of the digits of k^3.

Original entry on oeis.org

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

Views

Author

Robert G. Wilson v, Sep 21 2001

Keywords

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