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!)
A367724 Expansion of g.f. A(x) satisfying x = A(x) * (1 - A(x)) / (1 - A(x) - A(x)^4) such that A(0) = 1. 3
1, 1, 4, 18, 90, 487, 2785, 16559, 101309, 633523, 4030964, 26012632, 169842909, 1119960451, 7447798584, 49891581704, 336355963821, 2280413834539, 15538054908152, 106345134539952, 730770552189188, 5039872364942277, 34872958276988909, 242026790074533733, 1684356151039022090 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
G.f. A(x) = Sum_{n>=0} a(n)*x^n satisfies:
(1) x = A(x) * (1 - A(x)) / (1 - A(x) - A(x)^4).
(2) x = (1+x)*A(x) - A(x)^2 + x*A(x)^4 such that A(0) = 1.
(3) A(x) = x / Series_Reversion(x*(1 + Series_Reversion( x/((1 + x)^4 + x) ))).
(4) a(n) = Sum_{k=1..n} binomial(n, k) * binomial(4*k-n, k-1))/n for n > 0 with a(0) = 1 (derived from a formula by Tani Akinari in A243156).
EXAMPLE
G.f. A(x) = 1 + x + 4*x^2 + 18*x^3 + 90*x^4 + 487*x^5 + 2785*x^6 + 16559*x^7 + 101309*x^8 + 633523*x^9 + 4030964*x^10 + ...
Let R(x) = x * (1 - x) / (1 - x - x^4) then R(A(x)) = x;
however, A(R(x)) does not equal x, rather
A(R(x)) = 1 + x + 4*x^2 + 18*x^3 + 90*x^4 + 488*x^5 + 2794*x^6 + 16622*x^7 + 101732*x^8 + 636382*x^9 + 4050546*x^10 + ...
PROG
(PARI) {a(n)=polcoeff(x/serreverse(x*(1+serreverse(x/((1 + x)^4 + x +x*O(x^n))))), n)}
for(n=0, 30, print1(a(n), ", "))
(PARI) /* From a formula by Tani Akinari in A243156 */
{a(n)=0^n+sum(k=1, n, binomial(n, k)*binomial(4*k-n, k-1))/(n+0^n)}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
Sequence in context: A218760 A219305 A011270 * A355247 A269450 A206639
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Nov 28 2023
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 August 30 22:39 EDT 2024. Contains 375550 sequences. (Running on oeis4.)