OFFSET
0,3
COMMENTS
LINKS
Index entries for linear recurrences with constant coefficients, signature (2,2,-1,1,-2,-2,1).
FORMULA
MAPLE
nmax:=27: with(combinat): for n from 0 to nmax do A001654(n):=fibonacci(n)*fibonacci(n+1) od: a(0):=0: a(1):=1: a(2):=2: a(3):=6: for n from 4 to nmax do a(n):=a(n-4)+A001654(n) od: seq(a(n), n=0..nmax);
A180666 := proc(n)
option remember;
if n <=3 then
op(n+1, [0, 1, 2, 6]) ;
else
procname(n-4)+A001654(n) ;
end if;
end proc:
seq(A180666(n), n=0..100 ) ; # R. J. Mathar, Aug 18 2016
MATHEMATICA
Take[Total@{#, PadLeft[Drop[#, -4], Length@ #]}, Length@ # - 4] &@ Table[Times @@ Fibonacci@ {n, n + 1}, {n, 0, 31}] (* or *)
CoefficientList[Series[(-x)/((x^2 - 3 x + 1) (x - 1) (x + 1)^2 (x^2 + 1)), {x, 0, 27}], x] (* Michael De Vlieger, Aug 18 2016 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Johannes W. Meijer, Sep 21 2010
STATUS
approved