The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A290999 p-INVERT of (1,1,1,1,1,...), where p(S) = 1 - 6*S^2. 2
0, 6, 12, 54, 168, 606, 2052, 7134, 24528, 84726, 292092, 1007814, 3476088, 11991246, 41362932, 142682094, 492178848, 1697768166, 5856430572, 20201701974, 69685556808, 240379623486, 829187031012, 2860272179454, 9866479513968, 34034319925206, 117401037420252 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
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 A291000 for a guide to related sequences.
LINKS
FORMULA
G.f.: 6*x/(1 - 2*x - 5*x^2).
a(n) = 2*a(n-1) + 5*a(n-2) for n >= 3.
a(n) = 6*A002532(n).
a(n) = sqrt(3/2)*((1+sqrt(6))^n - (1-sqrt(6))^n). - Colin Barker, Aug 23 2017
MATHEMATICA
z = 60; s = x/(1 - x); p = 1 - s^6;
Drop[CoefficientList[Series[s, {x, 0, z}], x], 1] (* A000012 *)
Drop[CoefficientList[Series[1/p, {x, 0, z}], x], 1] (* A290999 *)
LinearRecurrence[{2, 5}, {0, 6}, 30] (* Harvey P. Dale, Mar 25 2018 *)
PROG
(Magma) [n le 2 select 6*(n-1) else 2*Self(n-1) +5*Self(n-2): n in [1..41]]; // G. C. Greubel, Apr 25 2023
(SageMath)
A290999=BinaryRecurrenceSequence(2, 5, 0, 6)
[A290999(n) for n in range(41)] # G. C. Greubel, Apr 25 2023
CROSSREFS
Sequence in context: A256584 A117866 A365691 * A094060 A341893 A324529
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Aug 22 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 June 8 16:02 EDT 2024. Contains 373224 sequences. (Running on oeis4.)