OFFSET
0,2
COMMENTS
FORMULA
a(2n+1) = A130196(n+1).
Conjectures from Colin Barker, Jan 10 2016: (Start)
a(n) = 2*a(n-6) - a(n-12) for n>11.
G.f.: (1+2*x+3*x^2+2*x^3+5*x^4+x^5+5*x^6-2*x^7-3*x^8-2*x^9+x^10-x^11) / ((1-x)^2*(1+x)^2*(1-x+x^2)^2*(1+x+x^2)^2).
(End)
a(3n) + a(3n+1) + a(3n+2) = A047238(n+3).
MATHEMATICA
CoefficientList[Series[(1 + 2 x + 3 x^2 + 2 x^3 + 5 x^4 + x^5 + 5 x^6 - 2 x^7 - 3 x^8 - 2 x^9 + x^10 - x^11)/((1 - x)^2 (1 + x)^2 (1 - x + x^2)^2 (1 + x + x^2)^2), {x, 0, 69}], x] (* or *)
b[m_, n_] := b[m, n] = Which[m == n, 0, n == m + 1, (-1)^(n + 1)/n, n > m, b[m, n - 1] + b[m + 1, n - 1], n < m, b[m - 1, n + 1] - b[m - 1, n]]; Table[(n + 1)/Denominator@ b[0, n], {n, 0, 69}] (* Michael De Vlieger, Jan 15 2016, Jean-François Alcover at A189733 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul Curtz, Jan 10 2016
STATUS
approved