OFFSET
0,3
LINKS
Colin Barker, Table of n, a(n) for n = 0..1000
Marika Diepenbroek, Monica Maus, and Alex Stoll, Pattern Avoidance in Reverse Double Lists, Preprint 2015. See Table 3.
Hannah Golab, Pattern avoidance in Cayley permutations, Master's Thesis, Northern Arizona Univ. (2024). See p. 41.
Index entries for linear recurrences with constant coefficients, signature (3,-1,-1).
FORMULA
From Colin Barker, Apr 12 2016: (Start)
a(n) = (-2 + (1-sqrt(2))^n + (1+sqrt(2))^n)/2 for n>1.
a(n) = 3*a(n-1)-a(n-2)-a(n-3) for n>4.
(End)
E.g.f.: x + (cosh(sqrt(2)*x) - 1)*exp(x). - Ilya Gutkovskiy, Sep 16 2016
MATHEMATICA
Table[2 Fibonacci[n-1, 2] + LucasL[n-1, 2]/2 + KroneckerDelta[n-1] - 1, {n, 0, 20}] (* Vladimir Reshetnikov, Sep 16 2016 *)
LinearRecurrence[{3, -1, -1}, {0, 1, 2, 6, 16}, 40] (* Harvey P. Dale, Mar 18 2018 *)
PROG
(PARI) concat(0, Vec(x*(1-x+x^2+x^3)/((1-x)*(1-2*x-x^2)) + O(x^50))) \\ Colin Barker, Apr 12 2016
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Alois P. Heinz, Apr 06 2016
STATUS
approved