login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A302302 Number of triples (i,j,k) such that i+j+k > 0 with -n <= i,j,k <= n. 0
0, 10, 53, 153, 334, 620, 1035, 1603, 2348, 3294, 4465, 5885, 7578, 9568, 11879, 14535, 17560, 20978, 24813, 29089, 33830, 39060, 44803, 51083, 57924, 65350, 73385, 82053, 91378, 101384, 112095, 123535, 135728, 148698, 162469, 177065, 192510, 208828, 226043 (list; graph; refs; listen; history; text; internal format)
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
FORMULA
From Alois P. Heinz, Apr 08 2018: (Start)
a(n) = n*(3+9*n+8*n^2)/2.
G.f.: (x^2+13*x+10)*x/(x-1)^4.
a(n) = A130748(n) - A003215(n) for n > 0. (End)
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
Sequence in context: A367460 A200035 A119543 * A216938 A298564 A063899
KEYWORD
nonn,easy
AUTHOR
Andres Cicuttin, Apr 05 2018
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 07:53 EDT 2024. Contains 371964 sequences. (Running on oeis4.)