OFFSET
0,3
COMMENTS
LINKS
Chai Wah Wu, Table of n, a(n) for n = 0..4786
Narad Rampersad and Max Wiebe, Sums of products of binomial coefficients mod 2 and 2-regular sequences, arXiv:2309.04012 [math.NT], 2023.
Chai Wah Wu, Sums of products of binomial coefficients mod 2 and run length transforms of sequences, arXiv:1610.06166 [math.CO], 2016.
Index entries for linear recurrences with constant coefficients, signature (1,1).
FORMULA
a(n) = A000032(n-2) for n > 1.
a(n) = a(n-1) + a(n-2) for n > 3. - Chai Wah Wu, Feb 04 2022
MATHEMATICA
CoefficientList[Series[(1 - 2 x^3)/(1 - x - x^2), {x, 0, 42}], x] (* Michael De Vlieger, Feb 04 2022 *)
PROG
(Python)
from sympy import lucas
def A329723(n): return 1 if n <= 1 else lucas(n-2) # Chai Wah Wu, Feb 04 2022
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Chai Wah Wu, Nov 19 2019
STATUS
approved