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.

Previous Showing 41-44 of 44 results.

A338696 Number of ways to write n as x^3 + y^2 + z*(3*z+2), where x and y are nonnegative integers, and z is an integer.

Original entry on oeis.org

3, 3, 1, 1, 3, 3, 1, 2, 6, 5, 1, 2, 3, 2, 1, 3, 8, 4, 0, 2, 3, 4, 1, 3, 7, 4, 2, 3, 3, 3, 3, 4, 7, 4, 2, 4, 5, 5, 1, 2, 7, 5, 3, 6, 5, 1, 2, 3, 7, 5, 2, 6, 2, 2, 1, 2, 10, 5, 2, 4, 2, 1, 1, 7, 11, 8, 2, 5, 6, 5, 3, 4, 11, 3, 1, 5, 5, 2, 1, 5, 8, 6, 4, 5, 5, 5, 3, 2, 9, 7, 2, 6, 4, 5, 1, 5, 10, 5, 2, 4
Offset: 1

Views

Author

Zhi-Wei Sun, Apr 24 2021

Keywords

Comments

Conjecture: a(n) > 0 except for n = 19.
We have verified this for n up to 5*10^6.
As z*(3*z+2) = floor((3*z+1)^2/3) and 19 = 0^3 + 4^2 + floor(3^2/3), the conjecture implies that each n = 0,1,... can be written as x^3 + y^2 + floor(z^2/3) with x,y,z nonnegative integers.

Examples

			a(63) = 1 with 63 = 3^3 + 6^2 + 0*(3*0+2).
a(327) = 1 with 327 = 5^3 + 13^2 + 3*(3*3+2).
a(478) = 1 with 478 = 6^3 + 1^2 + 9*(3*9+2).
a(847) = 1 with 847 = 1^3 + 29^2 + 1*(3*1+2).
a(1043) = 1 with 1043 = 3^3 + 20^2 + 14*(3*14+2).
a(3175) = 1 with 3175 = 5^3 + 35^2 + (-25)*(3*(-25)+2).
		

Crossrefs

Programs

  • Mathematica
    OctQ[n_]:=OctQ[n]=IntegerQ[Sqrt[3n+1]];
    tab={};Do[r=0;Do[If[OctQ[n-x^3-y^2],r=r+1],{x,0,n^(1/3)},{y,0,Sqrt[n-x^3]}];tab=Append[tab,r],{n,1,100}];Print[tab]

A271365 Number of ordered ways to write n as u^2 + v^3 + x^4 + y^5 + z^6, where u is a positive integer, and v, x, y, z are nonnegative integers.

Original entry on oeis.org

1, 4, 6, 5, 5, 6, 4, 1, 2, 7, 9, 6, 4, 3, 1, 1, 6, 12, 10, 4, 3, 3, 1, 1, 6, 12, 11, 7, 6, 4, 2, 4, 9, 12, 8, 5, 10, 12, 6, 2, 5, 9, 8, 8, 10, 6, 2, 3, 8, 13, 10, 8, 11, 8, 2, 1, 6, 10, 8, 7, 6, 2, 2, 7, 15, 20, 14, 9, 13, 11
Offset: 1

Views

Author

Zhi-Wei Sun, Apr 05 2016

Keywords

Comments

Conjecture: a(n) > 0 for all n > 0, and a(n) = 1 only for n = 1, 8, 15, 16, 23, 24, 56. Moreover, the only positive integers not represented by u^2+v^3+x^4+y^5 (u > 0 and v,x,y >= 0) are 8, 15, 23, 55, 62, 71, 471, 478, 510, 646, 806, 839, 879, 939, 1023, 1063, 1287, 2127, 5135, 6811, 7499, 9191, 26471.
Note that 1/2+1/3+1/4+1/5+1/6 = 29/20 < 3/2.

Examples

			a(1) = 1 since 1 = 1^2 + 0^3 + 0^4 + 0^5 + 0^6.
a(8) = 1 since 8 = 2^2 + 1^3 + 1^4 + 1^5 + 1^6.
a(15) = 1 since 15 = 2^2 + 2^3 + 1^4 + 1^5 + 1^6.
a(16) = 1 since 16 = 4^2 + 0^3 + 0^4 + 0^5 + 0^6.
a(23) = 1 since 23 = 2^2 + 1^3 + 2^4 + 1^5 + 1^6.
a(24) = 1 since 24 = 4^2 + 2^3 + 0^4 + 0^5 + 0^6.
a(56) = 1 since 56 = 4^2 + 2^3 + 0^4 + 2^5 + 0^6.
		

Crossrefs

Programs

  • Mathematica
    SQ[n_]:=SQ[n]=n>0&&IntegerQ[Sqrt[n]]
    Do[r=0;Do[If[SQ[n-x1^6-x2^5-x3^4-x4^3],r=r+1],{x1,0,n^(1/6)},{x2,0,(n-x1^6)^(1/5)},{x3,0,(n-x1^6-x2^5)^(1/4)},{x4,0,(n-x1^6-x2^5-x3^4)^(1/3)}];Print[n," ",r];Continue,{n,1,70}]

A271381 Number of ordered ways to write n as u^2 + v^2 + x^3 + y^3, where u, v, x, y are nonnegative integers with 2 | u*v, u <= v and x <= y.

Original entry on oeis.org

1, 2, 2, 1, 1, 2, 2, 1, 2, 4, 3, 1, 1, 3, 2, 1, 3, 5, 3, 1, 2, 3, 2, 0, 2, 5, 3, 3, 3, 4, 1, 2, 4, 5, 3, 2, 5, 4, 3, 2, 4, 6, 2, 3, 4, 5, 2, 2, 4, 3, 2, 2, 5, 6, 4, 3, 2, 3, 2, 2, 4, 4, 3, 3, 5, 7, 4, 5, 5, 6, 4, 2, 6, 9, 6, 2, 4, 5, 1, 3, 8
Offset: 0

Views

Author

Zhi-Wei Sun, Apr 06 2016

Keywords

Comments

Conjecture: (i) a(n) > 0 except for n = 23, and a(n) = 1 only for n = 0, 3, 4, 7, 11, 12, 15, 19, 23, 30, 78, 203, 219.
(ii) Any natural number can be written as the sum of two squares and three fourth powers.

Examples

			a(3) = 1 since 3 = 0^2 + 1^2 + 1^3 + 1^3 with 0 even.
a(4) = 1 since 4 = 0^2 + 2^2 + 0^3 + 0^3 with 0 and 2 even.
a(7) = 1 since 7 = 1^2 + 2^2 + 1^3 + 1^3 with 2 even.
a(11) = 1 since 11 = 0^2 + 3^2 + 1^3 + 1^3 with 0 even.
a(12) = 1 since 12 = 0^2 + 2^2 + 0^3 + 2^3 with 0 and 2 even.
a(15) = 1 since 15 = 2^2 + 3^2 + 1^3 + 1^3 with 2 even.
a(19) = 1 since 19 = 1^2 + 4^2 + 1^3 + 1^3 with 4 even.
a(30) = 1 since 30 = 2^2 + 5^2 + 0^3 + 1^3 with 2 even.
a(78) = 1 since 78 = 2^2 + 3^2 + 1^3 + 4^3 with 2 even.
a(203) = 1 since 203 = 7^2 + 10^2 + 3^3 + 3^3 with 10 even.
a(219) = 1 since 219 = 8^2 + 8^2 + 3^3 + 4^3 with 8 even.
		

Crossrefs

Programs

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

A307981 Number of ways to write n as x^3 + 2*y^3 + 3*z^3 + w*(w+1)*(w+2)/6, where x,y,z,w are nonnegative integers.

Original entry on oeis.org

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

Views

Author

Zhi-Wei Sun, May 08 2019

Keywords

Comments

Conjecture: a(n) > 0 for every nonnegative integer n. In other words, we have {x^3 + 2*y^3 + 3*z^3 + w*(w+1)*(w+2)/6: x,y,z,w = 0,1,2,...} = {0,1,2,...}.
We have verified a(n) > 0 for all n = 0..2*10^6.

Examples

			a(19) = 1 with 19 = 0^3 + 2*2^3 + 3*1^3 + 0*1*2/6.
a(22) = 1 with 22 = 0^3 + 2*1^3 + 3*0^3 + 4*5*6/6.
a(112) = 1 with 112 = 3^3 + 2*0^3 + 3*3^3 + 2*3*4/6.
a(158) = 1 with 158 = 3^3 + 2*4^3 + 3*1^3 + 0*1*2/6.
a(791) = 1 with 791 = 1^3 + 2*5^3 + 3*5^3 + 9*10*11/6.
a(956) = 1 with 956 = 9^3 + 2*0^3 + 3*4^3 + 5*6*7/6.
a(6363) = 1 with 6363 = 10^3 + 2*13^3 + 3*0^3 + 17*18*19/6.
		

Crossrefs

Programs

  • Mathematica
    CQ[n_]:=CQ[n]=IntegerQ[n^(1/3)];f[w_]:=f[w]=Binomial[w+2,3];
    tab={};Do[r=0;w=0;Label[bb];If[f[w]>n,Goto[aa]];Do[If[CQ[n-f[w]-2y^3-3z^3],r=r+1],{y,0,((n-f[w])/2)^(1/3)},{z,0,((n-f[w]-2y^3)/3)^(1/3)}];w=w+1;Goto[bb];Label[aa];tab=Append[tab,r],{n,0,100}];Print[tab]
Previous Showing 41-44 of 44 results.