OFFSET
1,1
COMMENTS
For an introduction to reductions of polynomials by substitutions such as x^2->x+1, see A192232.
FORMULA
Empirical G.f.: -x*(x^3-3*x^2-3*x+2)/((x^2-3*x+1)*(x^2+x-1)). - Colin Barker, Nov 12 2012
a(n) = F(2n) + F(n+1), where F(n) is A000045. - Carl Najafi, May 06 2014
EXAMPLE
MATHEMATICA
q[x_] := x + 1;
p[n_, x_] := 1 + x^(n + 1) + x^(2 n);
Table[Simplify[p[n, x]], {n, 1, 5}]
reductionRules = {x^y_?EvenQ -> q[x]^(y/2),
x^y_?OddQ -> x q[x]^((y - 1)/2)};
t = Table[FixedPoint[Expand[#1 /. reductionRules] &, p[n, x]], {n, 1, 30}]
Table[Coefficient[Part[t, n], x, 0], {n, 1, 30}]
(* A192474 *)
Table[Coefficient[Part[t, n], x, 1], {n, 1, 30}]
(* A192475 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jul 01 2011
STATUS
approved