A274075 Sum of n-th powers of the roots of x^3 + x^2 - 9*x - 1.
3, -1, 19, -25, 195, -401, 2131, -5545, 24323, -72097, 285459, -910009, 3407043, -11311665, 41065043, -139462985, 497736707, -1711838529, 6052005907, -20960815961, 73717030595, -256312368337, 898804827731, -3131899112169, 10964830193411, -38253117375201
Offset: 0
Links
- Colin Barker, Table of n, a(n) for n = 0..1000
- B. C. Berndt, L.-C. Zhang, Ramanujan's identities for eta-functions, Math. Ann. 292 (1992), 561-573.
- Roman Witula, Ramanujan Type Trigonometric Formulas: The General Form for the Argument 2Pi/7, J. Integer Seq., 12 (2009), Article 09.8.5.
- Roman Witula and Damian Slota, New Ramanujan-Type Formulas and Quasi-Fibonacci Numbers of Order 7, Journal of Integer Sequences, Vol. 10 (2007), Article 07.5.6
- Roman Witula and Damian Slota, Quasi-Fibonacci Numbers of Order 11, Journal of Integer Sequences, Vol. 10 (2007), Article 07.8.5
- Roman Witula, Damian Slota and Adam Warzynski, Quasi-Fibonacci Numbers of the Seventh Order, J. Integer Seq., 9 (2006), Article 06.4.3.
- Index entries for linear recurrences with constant coefficients, signature (-1,9,1).
Programs
-
Mathematica
FullSimplify[Table[(Tan[Pi/7]/Tan[4*Pi/7])^n + (Tan[4*Pi/7]/Tan[2*Pi/7])^n + (Tan[2*Pi/7]/Tan[Pi/7])^n, {n, 0, 12}]] (* Wesley Ivan Hurt, Jun 11 2016 *)
-
PARI
Vec((3+2*x-9*x^2)/(1+x-9*x^2-x^3) + O(x^30)) \\ Colin Barker, Jun 11 2016
-
PARI
polsym(x^3 + x^2 - 9*x - 1, 30) \\ Charles R Greathouse IV, Jul 20 2016
Formula
a(n) = (tan(Pi/7)/tan(4*Pi/7))^n + (tan(4*Pi/7)/tan(2*Pi/7))^n + (tan(2*Pi/7)/tan(Pi/7))^n.
a(n) = -a(n-1) + 9*a(n-2) + a(n-3) for n>2.
G.f.: (3+2*x-9*x^2) / (1+x-9*x^2-x^3). - Colin Barker, Jun 11 2016
Comments