login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A097136
a(n) = 3*Fibonacci(2*n) + 1.
5
1, 4, 10, 25, 64, 166, 433, 1132, 2962, 7753, 20296, 53134, 139105, 364180, 953434, 2496121, 6534928, 17108662, 44791057, 117264508, 307002466, 803742889, 2104226200, 5508935710, 14422580929, 37758807076, 98853840298, 258802713817, 677554301152
OFFSET
0,2
COMMENTS
Binomial transform of A097135.
FORMULA
G.f.: (1-2*x^2) / ((1-x)*(1-3*x+x^2)).
a(n) = 4*a(n-1) - 4*a(n-2) + a(n-3).
a(n) = 1+3((3+sqrt(5))/2)^n/sqrt(5)-3((3-sqrt(5))/2)^n/sqrt(5).
a(n) = A097132(2*n) = A097133(2*n).
MATHEMATICA
Table[3*Fibonacci[2n]+1, {n, 0, 30}] (* or *) LinearRecurrence[{4, -4, 1}, {1, 4, 10}, 30] (* Harvey P. Dale, May 25 2018 *)
PROG
(PARI) Vec((1-2*x^2)/((1-x)*(1-3*x+x^2)) + O(x^30)) \\ Colin Barker, Nov 02 2016
CROSSREFS
Cf. A000045.
Sequence in context: A298412 A289245 A347725 * A049348 A282389 A361611
KEYWORD
nonn,easy
AUTHOR
Paul Barry, Jul 26 2004
STATUS
approved