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!)
A262013 G.f. A(x) satisfies: A(x)^4 = Sum_{n>=0} (4*n)!/(n!)^4 * x^n / A(x)^(4*n). 2
1, 6, 432, 45960, 5780034, 797957244, 116916528960, 17852845828752, 2810058672255120, 452703723158137776, 74282858140993920000, 12371608762947252317376, 2085965999078265151837416, 355369363809372393287259600, 61077516024443872565938037760, 10577549099569850669961138879936, 1844022794086994489463720605589954, 323353325204017719895246887849230460 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f. A(x) satisfies:
(1) A(x)^4 = x / Series_Reversion( Sum_{n>=0} (4*n)!/(n!)^4 * x^(n+1) ).
(2) Series_Reversion( x/A(x)^4 ) = Sum_{n>=0} (4*n)!/(n!)^4 * x^(n+1).
(3) A(x^4) = -x + x / Series_Reversion( x*F(x) ) where F(x)^4 = Sum_{n>=0} (4*n)!/(n!)^4 * x^(4*n)/(1-x)^(4*n+4).
(4) (1/x) * Series_Reversion( x / (A(x^4) + x) ) equals the g.f. of A262012.
EXAMPLE
G.f.: A(x) = 1 + 6*x + 432*x^2 + 45960*x^3 + 5780034*x^4 + 797957244*x^5 +...
such that
A(x)^4 = 1 + 24*x/A(x)^4 + 2520*x^2/A(x)^8 + 369600*x^3/A(x)^12 + 63063000*x^4/A(x)^16 + 11732745024*x^5/A(x)^20 +...+ (4*n)!/(n!)^4 * x^n/A(x)^(4*n) +...
where
A(x)^4 = 1 + 24*x + 1944*x^2 + 215808*x^3 + 27736920*x^4 + 3879912960*x^5 + 573515224128*x^6 + 88128590118912*x^7 +...+ A262010(n)*x^n +...
Also,
(1/x)*Series_Reversion( x/(A(x^4) + x) ) = 1 + x + x^2 + x^3 + 7*x^4 + 31*x^5 + 91*x^6 + 211*x^7 + 997*x^8 + 5941*x^9 + 27181*x^10 + 97021*x^11 + 369907*x^12 +...+ A262012(n)*x^n +...
PROG
(PARI) {a(n) = local(A); A = ( x/serreverse( x*sum(m=0, n, (4*m)!/(m!)^4*x^m +x*O(x^n)) ) )^(1/4) ; polcoeff(A, n)}
for(n=0, 20, print1(a(n), ", "))
(PARI) {a(n) = local(A); A = -x + x/serreverse(x*sum(m=0, n, x^(4*m)/(1-x +O(x^(4*n+2)))^(4*m+4)*(4*m)!/(m!)^4)^(1/4)) ; polcoeff(A, 4*n)}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
Sequence in context: A275686 A173760 A269882 * A028665 A231316 A270066
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Sep 11 2015
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 23 12:44 EDT 2024. Contains 371913 sequences. (Running on oeis4.)