[go: up one dir, main page]

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”).

A272123
a(n) = Fibonacci(3n) - Fibonacci(2n).
0
0, 1, 5, 26, 123, 555, 2440, 10569, 45381, 193834, 825275, 3506867, 14883984, 63124593, 267596485, 1134071130, 4805348667, 20359308187, 86252640920, 365396207993, 1547906421765, 6557202405546, 27777188626555, 117667194149091, 498449204352288
OFFSET
0,3
FORMULA
a(n) = A014445(n) - A001906(n).
G.f.: -x*(3*x^2-2*x+1)/((x^2-3*x+1)*(x^2+4*x-1)). - Alois P. Heinz, Apr 21 2016
E.g.f.: (exp(-(sqrt(5)-2)*x)*(exp(2*sqrt(5)*x) + exp((sqrt(5)-1)*x/2) - exp((3*sqrt(5)-1)x/2) - 1))/sqrt(5). - Ilya Gutkovskiy, Apr 22 2016
MAPLE
a:= n-> (<<0|1|0|0>, <0|0|1|0>, <0|0|0|1>,
<1|1|-12|7>>^n. <<0, 1, 5, 26>>)[1, 1]:
seq(a(n), n=0..30); # Alois P. Heinz, Apr 21 2016
MATHEMATICA
Table[Fibonacci[3n] - Fibonacci[2n], {n, 0, 25}] (* Robert Price, Apr 21 2016 *)
PROG
(PARI) a(n) = fibonacci(3*n) - fibonacci(2*n); \\ Michel Marcus, Apr 21 2016
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Peter M. Chema, Apr 21 2016
STATUS
approved