OFFSET
1,2
LINKS
Colin Barker, Table of n, a(n) for n = 1..373
Index entries for linear recurrences with constant coefficients, signature (1,232322,-232322,-1,1).
FORMULA
a(n) = a(n-1)+232322*a(n-2)-232322*a(n-3)-a(n-4)+a(n-5).
G.f.: -x*(x^4+7700*x^3-20242*x^2+7700*x+1) / ((x-1)*(x^2-482*x+1)*(x^2+482*x+1)).
EXAMPLE
7701 is in the sequence because it is the 51st octagonal number and the 56th centered pentagonal number.
MATHEMATICA
CoefficientList[Series[(x^4 + 7700 x^3 - 20242 x^2 + 7700 x + 1) / ((1 - x) (x^2 - 482 x + 1) (x^2 + 482 x + 1)), {x, 0, 30}], x] (* Vincenzo Librandi, Jan 20 2015 *)
PROG
(PARI) Vec(-x*(x^4+7700*x^3-20242*x^2+7700*x+1)/((x-1)*(x^2-482*x+1)*(x^2+482*x+1)) + O(x^100))
(Magma) I:=[1, 7701, 219781, 1789106881, 51059956641]; [n le 5 select I[n] else Self(n-1)+232322*Self(n-2)-232322*Self(n-3)-Self(n-4)+Self(n-5): n in [1..25]]; // Vincenzo Librandi, Jan 20 2015
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Colin Barker, Jan 19 2015
STATUS
approved