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

A111573
a(n) = a(n-1) + a(n-3) + a(n-4), n >= 4.
6
0, 1, 3, 3, 4, 8, 14, 21, 33, 55, 90, 144, 232, 377, 611, 987, 1596, 2584, 4182, 6765, 10945, 17711, 28658, 46368, 75024, 121393, 196419, 317811, 514228, 832040, 1346270, 2178309, 3524577, 5702887, 9227466, 14930352, 24157816, 39088169
OFFSET
0,3
COMMENTS
See comment and FAMP code for A111569.
FORMULA
G.f.: -x*(1+2*x)/((x^2+x-1)*(x^2+1)).
a(n) = A056594(n+3) + A000045(n+1). - R. J. Mathar, Nov 10 2009
From Greg Dresden, Jan 15 2024: (Start)
a(2*n) = Fibonacci(n)*Lucas(n+1);
a(2*n+1) = Fibonacci(2*n+1). (End)
MATHEMATICA
Table[Fibonacci[n + 1] - Cos[n*Pi/2], {n, 0, 40}] (* Greg Dresden, Oct 16 2021 *)
KEYWORD
easy,nonn
AUTHOR
Creighton Dement, Aug 10 2005
STATUS
approved