A254885 Number of ways to write n as the sum of two squares and a positive triangular number.
1, 1, 2, 1, 2, 2, 2, 2, 1, 3, 4, 2, 1, 3, 3, 3, 2, 2, 5, 3, 3, 2, 5, 2, 2, 5, 2, 5, 3, 4, 4, 4, 3, 1, 6, 3, 5, 5, 3, 5, 5, 3, 2, 5, 3, 8, 5, 2, 3, 4, 5, 3, 8, 4, 7, 6, 3, 3, 4, 5, 5, 6, 3, 5, 7, 4, 4, 8, 2, 6, 9, 2, 6, 6, 6, 4, 4, 5, 6, 7, 5, 6, 6, 4, 4, 11, 4, 6, 5, 3, 9, 6, 5, 4, 11, 6, 3, 4, 3, 9
Offset: 1
Keywords
Examples
a(4) = 1 since 4 = 0^2 + 1^2 + 2*3/2. a(9) = 1 since 9 = 2^2 + 2^2 + 1*2/2. a(13) = 1 since 13 = 1^2 + 3^2 + 2*3/2. a(34) = 1 since 34 = 2^2 + 3^2 + 6*7/2.
Links
- Zhi-Wei Sun, Table of n, a(n) for n = 1..10000
- Zhi-Wei Sun, Mixed sums of squares and triangular numbers, Acta Arith. 127(2007), 103-113.
- Zhi-Wei Sun, On universal sums a*x^2+b*y^2+c*f(z), a*T_x+b*T_y+f(z) and a*T_x+b*y^2+c*f(z), arXiv:1502.03056 [math.NT], 2015.
Programs
-
Mathematica
TQ[n_]:=n>0&&IntegerQ[Sqrt[8n+1]] Do[r=0;Do[If[TQ[n-x^2-y^2],r=r+1],{x,0,Sqrt[n]},{y,0,x}]; Print[n," ",r];Continue,{n,1,10000}]
Comments