OFFSET
2,1
COMMENTS
Terms up to 114 are the atomic numbers of the elements of group 14 in the periodic table. Those elements are also called crystallogens.
LINKS
Colin Barker, Table of n, a(n) for n = 2..1000
Wikipedia, Carbon group.
Index entries for linear recurrences with constant coefficients, signature (2,1,-4,1,2,-1).
FORMULA
From Colin Barker, Jun 19 2016: (Start)
a(n) = (6*(-9 + (-1)^n) + (25 + 3*(-1)^n)*n + 12*n^2 + 2*n^3)/12.
a(n) = (n^3 + 6*n^2 + 14*n - 24)/6 for n even.
a(n) = (n^3 + 6*n^2 + 11*n - 30)/6 for n odd.
a(n) = 2*a(n-1) + a(n-2) - 4*a(n-3) + a(n-4) + 2*a(n-5) - a(n-6) for n>7.
G.f.: 2*x^2*(3 + x - x^2 - 2*x^3 + x^5) / ((1-x)^4*(1+x)^2).
(End)
MATHEMATICA
Table[(6*(-9+(-1)^n)+(25+3*(-1)^n)*n+12*n^2+2*n^3)/12, {n, 2, 10}] (* or *) LinearRecurrence[{2, 1, -4, 1, 2, -1}, {6, 14, 32, 50, 82, 114}, 50] (* G. C. Greubel, Jun 23 2016 *)
PROG
(PARI) Vec(2*x^2*(3+x-x^2-2*x^3+x^5)/((1-x)^4*(1+x)^2) + O(x^100)) \\ Colin Barker, Jun 19 2016
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Natan Arie Consigli, Jun 18 2016
STATUS
approved