A105426 a(0)=1, a(1)=5, a(n)=8*a(n-1)-a(n-2).
1, 5, 39, 307, 2417, 19029, 149815, 1179491, 9286113, 73109413, 575589191, 4531604115, 35677243729, 280886345717, 2211413522007, 17410421830339, 137071961120705, 1079165267135301, 8496250175961703, 66890836140558323
Offset: 0
Links
- Tanya Khovanova, Recursive Sequences
- Index entries for linear recurrences with constant coefficients, signature (8,-1).
- Index entries for two-way infinite sequences
Programs
-
Mathematica
LinearRecurrence[{8,-1},{1,5},20] (* Harvey P. Dale, Feb 25 2016 *)
-
PARI
a(n)=subst(19*poltchebi(n)-poltchebi(n-1),x,4)/15
Comments