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.

A213519 Numbers that are the sum of cubes of distinct primes.

Original entry on oeis.org

0, 8, 27, 35, 125, 133, 152, 160, 343, 351, 370, 378, 468, 476, 495, 503, 1331, 1339, 1358, 1366, 1456, 1464, 1483, 1491, 1674, 1682, 1701, 1709, 1799, 1807, 1826, 1834, 2197, 2205, 2224, 2232, 2322, 2330, 2349, 2357, 2540, 2548, 2567, 2575, 2665, 2673, 2692
Offset: 1

Views

Author

T. D. Noe, Jul 10 2012

Keywords

Comments

The complement of this sequence is conjectured to have 483370 terms, the last one being 1866000 = A121571(3).
This conjecture was proved by Fuller and Nichols (see the link). - Robert Nichols, Sep 17 2017

Crossrefs

Cf. A121571.

Programs

  • Mathematica
    lim = PrimePi[17]; s = {0}; Do[p = Prime[n]; s = Union[s, s + p^3], {n, lim}]; Select[s, # <= Prime[lim]^3 &]