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

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A290894 p-INVERT of the positive integers, where p(S) = 1 - S^6. 2
0, 0, 0, 0, 0, 1, 12, 78, 364, 1365, 4368, 12377, 31848, 75882, 170560, 370266, 803712, 1827099, 4531980, 12346791, 35783396, 105681186, 308229948, 873545479, 2392395276, 6336768804, 16309261148, 41095234896, 102361858716, 254804224832, 640481466012 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,7
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 A290890 for a guide to related sequences.
LINKS
Index entries for linear recurrences with constant coefficients, signature (12, -66, 220, -495, 792, -923, 792, -495, 220, -66, 12, -1)
FORMULA
a(n) = 12*a(n-1) - 66*a(n-2) + 220*a(n-3) - 495*a(n-4) + 792*a(n-5) - 923*a(n-6) + 792*a(n-7) - 495*a(n-8) + 22*a(n-9) - 66*a(n-10) + 12*a(n-11) - a(n-12).
G.f.: x^5 / ((1 - 3*x + x^2)*(1 - x + x^2)*(1 - 5*x + 9*x^2 - 5*x^3 + x^4)*(1 - 3*x + 5*x^2 - 3*x^3 + x^4)). - Colin Barker, Aug 16 2017
MATHEMATICA
z = 60; s = x/(1 - x)^2; p = 1 - s^6;
Drop[CoefficientList[Series[s, {x, 0, z}], x], 1] (* A000027 *)
Drop[CoefficientList[Series[1/p, {x, 0, z}], x], 1] (* A290894 *)
PROG
(PARI) concat(vector(5), Vec(x^5 / ((1 - 3*x + x^2)*(1 - x + x^2)*(1 - 5*x + 9*x^2 - 5*x^3 + x^4)*(1 - 3*x + 5*x^2 - 3*x^3 + x^4)) + O(x^50))) \\ Colin Barker, Aug 16 2017
CROSSREFS
Sequence in context: A008504 A008494 A001288 * A121665 A341225 A124863
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Aug 15 2017
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | 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 April 23 07:42 EDT 2024. Contains 371905 sequences. (Running on oeis4.)