A115159 Numbers that are not the sum of a triangular number, a square and a fourth power.
34, 63, 89, 99, 139, 164, 174, 193, 204, 245, 314, 399, 424, 454, 464, 489, 504, 524, 549, 714, 1049, 1149, 1174, 1439, 1504, 1539, 1639, 1799, 1814, 1919, 2164, 2239, 2313, 2374, 2414, 2439, 2764, 2789, 3079, 3319, 3414, 3669, 3774, 3814, 4019, 4114
Offset: 1
Keywords
Links
- Zhi-Wei Sun, Table of n, a(n) for n = 1..718
- Zhi-Wei Sun, Mixed sums of squares and triangular numbers, Acta Arith. 127(2007), 103-113.
Programs
-
Mathematica
TQ[n_]:=TQ[n]=IntegerQ[Sqrt[8n+1]]; tab={};Do[Do[If[TQ[n-x^4-y^2],Goto[aa]],{x,0,n^(1/4)},{y,0,Sqrt[n-x^4]}];tab=Append[tab,n];Label[aa],{n,0,4114}];Print[tab] (From Zhi-Wei Sun)
Extensions
Definition corrected by Giovanni Resta, Aug 17 2011
Comments