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!)
A147622 Expansion of g.f.: 1/(1 - x - 2*x^2 + x^3 + x^4 + 2*x^7 - 5*x^9 + 2*x^11 + x^14 + x^15 - 2*x^16 - x^17 + x^18). 1
1, 1, 3, 4, 8, 12, 21, 31, 51, 79, 126, 199, 315, 500, 794, 1265, 2009, 3202, 5090, 8108, 12898, 20533, 32667, 51990, 82721, 131631, 209446, 333263, 530282, 843764, 1342587, 2136280, 3399227, 5408765, 8606368, 13694288, 21790171, 34672157 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
Index entries for linear recurrences with constant coefficients, signature (1,2,-1,-1,0,0,-2,0,5,0,-2,0,0,-1,-1,2,1,-1).
FORMULA
G.f.: -1/(x^9 * f(x) *f(1/x)), where f(x) = -1 +x^2 -x^7 -x^8 +x^9.
MATHEMATICA
f[x_]:= -1 +x^2 -x^7 -x^8 +x^9;
CoefficientList[Series[-1/(x^9*f[x]*f[1/x]), {x, 0, 50}], x]
PROG
(PARI) Vec(1/(1 -x -2*x^2 +x^3 +x^4 +2*x^7 -5*x^9 +2*x^11 +x^14 +x^15 -2*x^16 -x^17 +x^18) + O(x^40)) \\ Jinyuan Wang, Mar 10 2020
(Magma)
f:= func< x | -1 + x^2 - x^7 - x^8 + x^9 >;
R<x>:=PowerSeriesRing(Integers(), 50);
Coefficients(R!( -1/(x^9*f(x)*f(1/x)) )); // G. C. Greubel, Oct 21 2022
(SageMath)
def f(x): return -1 +x^2 -x^7 -x^8 +x^9
def A147622_list(prec):
P.<x> = PowerSeriesRing(QQ, prec)
return P( -1/(x^9*f(x)*f(1/x)) ).list()
A147622_list(50) # G. C. Greubel, Oct 21 2022
CROSSREFS
Sequence in context: A349050 A025034 A145722 * A173534 A074331 A052952
KEYWORD
nonn,easy
AUTHOR
Roger L. Bagula, Nov 08 2008
EXTENSIONS
Definition corrected by N. J. A. Sloane, Nov 09 2008
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 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)