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!)
A244856 G.f. satisfies: A(x) = (4 + A(x)^4) / (5-x). 3
1, 1, 7, 95, 1614, 30718, 626434, 13383650, 295692145, 6700461777, 154871912815, 3637093846055, 86539594779772, 2081721640140460, 50542732376144460, 1236960716959913020, 30483096737455969766, 755783491624380578998, 18839297079646725396450 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
G.f. satisfies:
(1) A(x) = 1 + Series_Reversion( (1+5*x - (1+x)^4)/(1 + x) ).
(2) A(x) = Sum_{n>=0} C(4*n,n)/(3*n+1) * (4 + x*A(x))^(3*n+1) / 5^(4*n+1).
(3) A(x) = G(x*A(x)) and G(x) = A(x/G(x)) where G(x) = (4+x + G(x)^4)/5 is the g.f. of A120593.
a(n) ~ 2^(n/2 - 2) * 3^(3*(n-1)/4) / (sqrt(Pi) * n^(3/2) * (5*sqrt(2)*3^(3/4) - 16)^(n - 1/2)). - Vaclav Kotesovec, Nov 27 2017
EXAMPLE
G.f.: A(x) = 1 + x + 7*x^2 + 95*x^3 + 1614*x^4 + 30718*x^5 +...
Compare A(x)^4 to (5-x)*A(x):
A(x)^4 = 1 + 4*x + 34*x^2 + 468*x^3 + 7975*x^4 + 151976*x^5 +...
(5-x)*A(x) = 5 + 4*x + 34*x^2 + 468*x^3 + 7975*x^4 + 151976*x^5 +...
MATHEMATICA
CoefficientList[1 + InverseSeries[Series[(1+5*x - (1+x)^4)/(1+x), {x, 0, 20}], x], x] (* Vaclav Kotesovec, Nov 27 2017 *)
PROG
(PARI) {a(n)=polcoeff(1 + serreverse((1+5*x - (1+x)^4)/(1 + x +x*O(x^n))), n)}
for(n=0, 30, print1(a(n), ", "))
(PARI) {a(n)=local(A=[1], Ax=1+x); for(i=1, n, A=concat(A, 0); Ax=Ser(A); A[#A]=Vec( ( Ax^4 - (5-x)*Ax ) )[#A]); A[n+1]}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
Sequence in context: A342109 A036337 A186378 * A367159 A201990 A306025
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jul 09 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 April 25 13:34 EDT 2024. Contains 371971 sequences. (Running on oeis4.)