OFFSET
1,2
COMMENTS
a(n) is odd since taking the reciprocal is an involution with only one fixed point.
EXAMPLE
a(3) = 7 since 1 / (1 +- x - x^2 + O(x^3)) = 1 -+ x + 2*x^2 + O(x^3) are excluded, but the other 7 power series 1 + c_1*x^1 + c_2^x^2 + O(x^3) have the property.
PROG
(PARI) {a(n) = my(c); if( n<1, 0, forvec( v = vector(n, i, [(-1)^(i>1), 1]), if( 1 >= vecmax( abs( Vec( 1 / Ser(v)))), c++)); c)};
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Michael Somos, Jul 02 2014
STATUS
approved