OFFSET
0,2
COMMENTS
If X is an n-set and Y a fixed (n-4)-subset of X then a(n-4) is equal to the number of 3-subsets of X intersecting Y. - Milan Janjic, Aug 15 2007
For n>=0, A092286(n) is the number of 2 X 2 matrices with all terms in {0,1,...,n} and (sum of terms) = n + 1. A092286(n) is also the number of 2 X 2 matrices with all terms in {0,1,...,n} and (sum of terms) = 3n - 1. - Clark Kimberling, Mar 20 2012
LINKS
Guillaume Aupy, Julien Herrmann. Periodicity in optimal hierarchical checkpointing schemes for adjoint computations. Optimization Methods and Software, Volume 32, 2017 - Issue 3. Preprint
Milan Janjic, Two Enumerative Functions
FORMULA
From Gary Detlefs, Aug 02 2010: (Start)
a(n) = 1/2 * sum_{k=1..n} (k+3)(k+2).
a(n) = 1/6 * n *(n^2 + 9n + 26). (End)
G.f.: x*(6 - 8*x + 3*x^2)/(1-x)^4. - Colin Barker, Mar 18 2012
MAPLE
a:=n->(n^3 + 9*n^2 + 26*n)/6: seq(a(n), n=3..45);
MATHEMATICA
q=60; (Transpose[NestList[Accumulate, Range[q], q]]-Range[q])[[4]] (* Vladimir Joseph Stephan Orlovsky, Apr 08 2011 *)
Table[(n^3 + 9*n^2 + 26*n)/6, {n, 0, 100}] (* T. D. Noe, Apr 12 2011 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Philippe Deléham, Jan 30 2004
STATUS
approved