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.

A275150 Number of ordered ways to write n as x^3 + 2*y^2 + k*z^2, where x,y,z are nonnegative integers, k is 1 or 5, and k = 1 if z = 0.

Original entry on oeis.org

1, 2, 2, 2, 2, 2, 2, 2, 3, 4, 3, 2, 3, 3, 2, 1, 2, 4, 3, 4, 3, 2, 2, 3, 3, 3, 3, 4, 5, 2, 3, 2, 3, 5, 4, 4, 5, 3, 4, 3, 2, 3, 2, 2, 5, 5, 4, 2, 2, 5, 3, 5, 5, 3, 5, 5, 2, 3, 3, 4, 4, 2, 2, 4, 4, 6, 3, 5, 4, 2, 3, 4, 5, 5, 4, 4, 5, 5, 5, 1, 5
Offset: 0

Views

Author

Zhi-Wei Sun, Jul 17 2016

Keywords

Comments

Conjecture 1: a(n) > 0 for all n = 0,1,2,..., and a(n) = 1 only for n = 0, 15, 79, 120, 218, 399, 454, 622, 725, 3240.
We have verified that a(n) > 0 for all n = 0..10^7.
Conjecture 2: For any positive integers a, b, c and integers i, j, k greater than one, there are infinitely many positive integers not in the set {a*x^i + b*y^j + c*z^k: x,y,z = 0,1,2,...}. - Zhi-Wei Sun, May 24 2023

Examples

			a(0) = 1 since 0 = 0^3 + 2*0^2 + 0^2.
a(15) = 1 since 15 = 2^3 + 2*1^2 + 5*1^2.
a(79) = 1 since 79 = 3^3 + 2*4^2 + 5*2^2.
a(120) = 1 since 120 = 2^3 + 2*4^2 + 5*4^2.
a(218) = 1 since 218 = 6^3 + 2*1^2 + 0^2.
a(399) = 1 since 399 = 5^3 + 2*3^2 + 16^2.
a(454) = 1 since 454 = 0^3 + 2*15^2 + 2^2.
a(622) = 1 since 622 = 2^3 + 2*17^2 + 6^2.
a(725) = 1 since 725 = 5^3 + 2*10^2 + 20^2.
a(3240) = 1 since 3240 = 7^3 + 2*38^2 + 3^2.
		

Crossrefs

Programs

  • Mathematica
    SQ[n_]:=SQ[n]=IntegerQ[Sqrt[n]]
    TQ[n_]:=TQ[n]=SQ[n]||SQ[n/5]
    Do[r=0;Do[If[TQ[n-x^3-2*y^2],r=r+1],{x,0,n^(1/3)},{y,0,Sqrt[(n-x^3)/2]}];Print[n," ",r];Continue,{n,0,80}]