login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A292491 p-INVERT of the odd positive integers, where p(S) = 1 + S - 2 S^2. 1
-1, 0, 8, 16, 24, 96, 360, 1008, 2808, 8640, 26568, 79056, 235224, 707616, 2128680, 6380208, 19123128, 57386880, 172213128, 516586896, 1549603224, 4648967136, 13947373800, 41841649008, 125523529848, 376572006720, 1129720271688, 3389156563536, 10167456936024
(list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Suppose s = (c(0), c(1), c(2), ...) is a sequence and p(S) is a polynomial. Let S(x) = c(0)*x + c(1)*x^2 + c(2)*x^3 + ... and T(x) = (-p(0) + 1/p(S(x)))/x. The p-INVERT of s is the sequence t(s) of coefficients in the Maclaurin series for T(x). Taking p(S) = 1 - S gives the "INVERT" transform of s, so that p-INVERT is a generalization of the "INVERT" transform (e.g., A033453).
See A292480 for a guide to related sequences.
LINKS
FORMULA
G.f.: -(((1 + x) (-1 + 4 x + x^2))/((-1 + 3 x) (1 + 3 x^2))).
a(n) = 3*a(n-1) - 3*a(n-2) + 9*a(n-3) for n >= 5.
MATHEMATICA
z = 60; s = x (x + 1)/(1 - x)^2; p = 1 + s - 2 s^2;
Drop[CoefficientList[Series[s, {x, 0, z}], x], 1] (* A005408 *)
Drop[CoefficientList[Series[1/p, {x, 0, z}], x], 1] (* A292491 *)
PROG
(PARI) x='x+O('x^99); Vec(((1+x)*(-1+4*x+x^2))/((1-3*x)*(1+3*x^2))) \\ Altug Alkan, Oct 03 2017
CROSSREFS
Sequence in context: A083496 A125991 A028589 * A331294 A182767 A302537
KEYWORD
easy,sign
AUTHOR
Clark Kimberling, Oct 03 2017
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 19 14:43 EDT 2024. Contains 376013 sequences. (Running on oeis4.)