OFFSET
0,2
COMMENTS
If we add the triples (i,j,k) such that i+j+k >= 0 then the corresponding numbers seem to be those of A130748.
LINKS
Index entries for linear recurrences with constant coefficients, signature (4,-6,4,-1)
FORMULA
MATHEMATICA
a[n_]:=Total[Flatten[Table[Table[Table[If[i+j+k>0, 1, 0], {i, -n, n}], {j, -n, n}], {k, -n, n}]]];
Table[a[n], {n, 0, 32}]
PROG
(PARI) a(n) = n*(3+9*n+8*n^2)/2; \\ Altug Alkan, Apr 08 2018
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Andres Cicuttin, Apr 05 2018
STATUS
approved