OFFSET
0,1
LINKS
Paolo Xausa, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (2,1,-2,-1).
FORMULA
a(n)= ((47*n+65)*F(n+1)+29*(n+1)*F(n))/5, where F(n) = A000045(n) (Fibonacci).
G.f.: (13+8*x)/(1-x-x^2)^2.
a(n) = 2*a(n-1) + a(n-2) - 2*a(n-3) - a(n-4). - Paolo Xausa, Jun 23 2026
MATHEMATICA
A067430[n_] := ((47*n + 65)*Fibonacci[n+1] + 29*(n+1)*Fibonacci[n])/5;
Array[A067430, 35, 0] (* Paolo Xausa, Jun 23 2026 *)
(* Alternative: *)
LinearRecurrence[{2, 1, -2, -1}, {13, 34, 81, 170}, 35] (* Paolo Xausa, Jun 23 2026 *)
CROSSREFS
KEYWORD
nonn,easy,changed
AUTHOR
Wolfdieter Lang, Feb 15 2002
EXTENSIONS
More terms from Paolo Xausa, Jun 23 2026
STATUS
approved
