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.

Showing 1-1 of 1 results.

A319052 Numbers that are not the sum of {2 squares, a nonnegative cube, and a nonnegative k-th power with k >= 17}.

Original entry on oeis.org

23, 71, 120, 312, 455, 2136, 99295
Offset: 1

Views

Author

XU Pingya, Sep 08 2018

Keywords

Comments

Subsequence of A022552.
Except for the above 7 terms, the remaining 427 numbers in A022552 can be expressed as the sum of two squares, a nonnegative cube and a nonnegative k-th power. So a(n) has only 7 terms, until n = 10^10.
Also, for n <= 6*10^7, when k = 3, the number of such forms is only 23; when 4 <= k <= 5, only 23 and 71; when k = 6, only 23, 71 and 455; when 7 <= k <= 8, only 23, 71 and 120; when 9 <= k <= 11, only 23, 71, 120, 312 and 455; when 12 <= k <= 16, only 23, 71, 120, 312, 455 and 2136.

Crossrefs

Programs

  • Mathematica
    n=100000;
    t=Union@Flatten@Table[x^2+y^2+z^3+w^17, {x,0,n^(1/2)}, {y,x,(n-x^2)^(1/2)}, {z,0,(n-x^2-y^2)^(1/3)}, {w,0,(n-x^2-y^2-z^3)^(1/17)}];
    Complement[Range[0,n], t]
Showing 1-1 of 1 results.