A024068 a(n) = 6^n - n^6.
1, 5, -28, -513, -2800, -7849, 0, 162287, 1417472, 9546255, 59466176, 361025495, 2173796352, 13055867207, 78356634560, 470173593951, 2821093130240, 16926635307167, 101559922656192, 609359692964615, 3656158376062976, 21936950554611735, 131621703728887232, 789730222905566927
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..200
- Index entries for linear recurrences with constant coefficients, signature (13,-63,161,-245,231,-133,43,-6).
Crossrefs
Programs
-
Magma
[6^n-n^6: n in [0..30]]; // Vincenzo Librandi, May 14 2011
-
Mathematica
Table[6^n-n^6,{n,0,20}] (* Harvey P. Dale, Jan 30 2019 *)
Formula
From Chai Wah Wu, Jan 26 2020: (Start)
a(n) = 13*a(n-1) - 63*a(n-2) + 161*a(n-3) - 245*a(n-4) + 231*a(n-5) - 133*a(n-6) + 43*a(n-7) - 6*a(n-8) for n > 7.
G.f.: (5*x^7 + 348*x^6 + 1734*x^5 + 1545*x^4 + 5*x^3 - 30*x^2 - 8*x + 1)/((x - 1)^7*(6*x - 1)). (End)
Extensions
More terms from Georg Fischer, Feb 23 2021
Comments