login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A011895
a(n) = floor(n*(n-1)*(n-2)/13).
2
0, 0, 0, 0, 1, 4, 9, 16, 25, 38, 55, 76, 101, 132, 168, 210, 258, 313, 376, 447, 526, 613, 710, 817, 934, 1061, 1200, 1350, 1512, 1686, 1873, 2074, 2289, 2518, 2761, 3020, 3295, 3586, 3893, 4218, 4560, 4920, 5298, 5695, 6112, 6549, 7006, 7483
OFFSET
0,6
LINKS
Index entries for linear recurrences with constant coefficients, signature (3,-3,1,0,0,0,0,0,0,0,0,0,1,-3,3,-1).
FORMULA
a(n) = +3*a(n-1) -3*a(n-2) +a(n-3) +a(n-13) -3*a(n-14) +3*a(n-15) -a(n-16). -R. J. Mathar, Apr 15 2010
G.f.: x^4*(1 +x +2*x^5 +2*x^9 -x^10 +x^11)/((1 -x)^4*(1 +x +x^2 +x^3 +x^4 +x^5 +x^6 +x^7 +x^8 +x^9 +x^10 +x^11 +x^12)). - Colin Barker, Sep 07 2016
PROG
(Magma) [n*(n-1)*(n-2) div 13: n in [0..50]]; // Vincenzo Librandi, Sep 07 2016
(PARI) concat(vector(4), Vec(x^4*(1 +x +2*x^5 +2*x^9 -x^10 +x^11) / ((1 -x)^4*(1 +x +x^2 +x^3 +x^4 +x^5 +x^6 +x^7 +x^8 +x^9 +x^10 +x^11 +x^12)) + O(x^50))) \\ Colin Barker, Sep 07 2016
CROSSREFS
Sequence in context: A181640 A033616 A265055 * A033612 A033610 A019573
KEYWORD
nonn,easy
STATUS
approved