A217052 a(n) = 3*a(n-1) + 24*a(n-2) + a(n-3), with a(0)=a(1)=1, and a(2)=19.
1, 1, 19, 82, 703, 4096, 29242, 186733, 1266103, 8309143, 55500634, 367187437, 2441886670, 16193659132, 107553444913, 713750040577, 4738726458775, 31453733795086, 208804386436435, 1386041496850144, 9200883498819958, 61076450807299765, 405436597890428431
Offset: 0
Examples
We have a(4)=37*a(2) and a(5) = 2^(12), which implies (1/3 - c(1))^4 + (1/3 - c(2))^4 + (1/3 - c(4))^4 = (37/9)*((1/3 - c(1))^2 + (1/3 - c(2))^2 + (1/3 - c(4))^2) = (37/27)*19 = 703/27, (1/3 - c(1))^5 + (1/3 - c(2))^5 + (1/3 - c(4))^5 = (8/3)^4. Moreover we have a(10) = 676837*a(3).
References
- Roman Witula, E. Hetmaniok, and D. Slota, Sums of the powers of any order roots taken from the roots of a given polynomial, Proceedings of the 15th International Conference on Fibonacci Numbers and Their Applications, Eger, Hungary, 2012, in review.
Links
- Index entries for linear recurrences with constant coefficients, signature (3,24,1).
Crossrefs
Programs
-
Mathematica
LinearRecurrence[{3,24,1}, {1,1,19}, 30]
-
PARI
Vec((1-2*x-8*x^2)/(1-3*x-24*x^2-x^3)+O(x^99)) \\ Charles R Greathouse IV, Oct 01 2012
Formula
G.f.: (1-2*x-8*x^2)/(1-3*x-24*x^2-x^3).
Comments