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!)
A243157 Series reversion of x*(1 - x)/(1 - x - x^3). 4
1, 0, 0, -1, -1, -1, 2, 6, 11, 5, -21, -78, -124, -53, 335, 1096, 1727, 441, -5545, -17196, -25596, -2251, 97822, 284072, 399346, -44721, -1782873, -4876069, -6411063, 2201418, 33297536, 85893931, 104783903, -64745927, -632601621, -1541899544, -1727700472, 1642436289, 12171894474, 28062518974 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,7
COMMENTS
Compare to A243156, where the g.f. G(x) satisfies:
x = G(x) * (1 - G(x)) / (1 - G(x) - G(x)^3) such that G(0) = 1.
LINKS
FORMULA
a(n) = (1/n)*(Sum_{k=0..floor((n-1)/3)} binomial(n,k)*binomial(n-2*k-2,n-1-3*k)*(-1)^k). - Tani Akinari, May 21 2018
D-finite with recurrence -n*(n+1)*a(n) +9*n*(n-1)*a(n-1) +6*(-6*n^2+22*n-17)*a(n-2) +27*(3*n-7)*(n-4)*a(n-3) +2*(-14*n^2+172*n-435)*a(n-4) -3*(53*n-192)*(n-5)*a(n-5) +341*(n-5)*(n-6)*a(n-6)=0. - R. J. Mathar, Mar 24 2023
EXAMPLE
G.f.: A(x) = x - x^4 - x^5 - x^6 + 2*x^7 + 6*x^8 + 11*x^9 + 5*x^10 - 21*x^11 - 78*x^12 - 124*x^13 - 53*x^14 + 335*x^15 +...
wherer A(x) = x * (1 - A(x) - A(x)^3) / (1 - A(x)).
PROG
(PARI) {a(n)=local(A=x); A=serreverse(x*(1 - x)/(1 - x - x^3 +x*O(x^n))); polcoeff(A, n)}
for(n=0, 40, print1(a(n), ", "))
(PARI) {a(n)=sum(k=0, floor((n-1)/3), binomial(n, k)*binomial(n-2*k-2, n-1-3*k)*(-1)^k)/n} \\ Tani Akinari, May 21 2018
CROSSREFS
Cf. A243156.
Sequence in context: A351716 A136699 A033710 * A274689 A123112 A092189
KEYWORD
sign
AUTHOR
Paul D. Hanna, May 31 2014
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 May 16 13:05 EDT 2024. Contains 372552 sequences. (Running on oeis4.)