OFFSET
1,1
COMMENTS
Consider the quadratic cyclotomic polynomial f(x) = x^2+x+1 and the quotients defined by f(x + n*f(x))/f(x). a(n) is the quotient at x=3.
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..5000
Index entries for linear recurrences with constant coefficients, signature (3,-3,1).
FORMULA
From R. J. Mathar, Nov 23 2009: (Start)
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3).
G.f.: x*(21+4*x+x^2)/(1-x)^3. (End)
E.g.f.: (13*x^2 + 20*x + 1)*exp(x). - G. C. Greubel, Apr 09 2016
EXAMPLE
f(x) = 13 when x = 3. Hence at n = 1, f(x + f(x))/f(x) = 21 = a(1).
MATHEMATICA
LinearRecurrence[{3, -3, 1}, {21, 67, 139}, 50] (* G. C. Greubel, Apr 09 2016 *)
Table[13n^2+7n+1, {n, 50}] (* Harvey P. Dale, Mar 22 2019 *)
PROG
(PARI) a(n)=13*n^2+7*n+1 \\ Charles R Greathouse IV, Jun 17 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
A.K. Devaraj, Nov 21 2009
EXTENSIONS
Edited, definition simplified, sequence extended beyond a(8) by R. J. Mathar, Nov 23 2009
STATUS
approved