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!)
A276363 G.f. satisfies: A(x - 3*A(x)^2) = x + A(x)^2. 19
1, 4, 56, 1172, 30248, 892296, 28951344, 1010322900, 37384819496, 1452697058744, 58872642043856, 2475764515398568, 107619880380347920, 4821324372637921744, 222077355203506939104, 10497354682052048593332, 508414637258604924680136, 25197644191294099697736312, 1276547957544912412461457680, 66046883289153773427379134360, 3487101507192780951408327918192 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
G.f. A(x) also satisfies:
(1) A(x) = x + 4 * A( x/4 + 3*A(x)/4 )^2.
(2) 3*A(x) = -x + 4 * Series_Reversion(x - 3*A(x)^2).
(3) R(x) = -3*x + 4 * Series_Reversion(x + A(x)^2), where R(A(x)) = x.
(4) R( sqrt( x/4 - R(x)/4 ) ) = 3*x/4 + R(x)/4, where R(A(x)) = x.
a(n) = Sum_{k=0..n-1} A277295(n,k)*3^k*4^(n-k-1).
EXAMPLE
G.f.: A(x) = x + 4*x^2 + 56*x^3 + 1172*x^4 + 30248*x^5 + 892296*x^6 + 28951344*x^7 + 1010322900*x^8 + 37384819496*x^9 + 1452697058744*x^10 + 58872642043856*x^11 +
2475764515398568*x^12 +...
such that A(x - 3*A(x)^2) = x + A(x)^2.
RELATED SERIES.
Note that Series_Reversion(x - 3*A(x)^2) = x/4 + 3*A(x)/4, which begins:
Series_Reversion(x - 3*A(x)^2) = x + 3*x^2 + 42*x^3 + 879*x^4 + 22686*x^5 + 669222*x^6 + 21713508*x^7 + 757742175*x^8 + 28038614622*x^9 + 1089522794058*x^10 + 44154481532892*x^11 + 1856823386548926*x^12 +...
Let R(x) = Series_Reversion(A(x)) so that R(A(x)) = x,
R(x) = x - 4*x^2 - 24*x^3 - 372*x^4 - 7944*x^5 - 204168*x^6 - 5942256*x^7 - 189500916*x^8 - 6490281480*x^9 - 235609789368*x^10 - 8983294304784*x^11 - 357373688297448*x^12 +...
then Series_Reversion(x + A(x)^2) = 3*x/4 + R(x)/4.
MATHEMATICA
m = 22; A[_] = 0;
Do[A[x_] = x + 4A[x/4 + 3A[x]/4]^2 + O[x]^m // Normal, {m}];
CoefficientList[A[x]/x, x] (* Jean-François Alcover, Sep 30 2019 *)
PROG
(PARI) {a(n) = my(A=[1], F=x); for(i=1, n, A=concat(A, 0); F=x*Ser(A); A[#A] = -polcoeff(subst(F, x, x - 3*F^2) - F^2, #A) ); A[n]}
for(n=1, 30, print1(a(n), ", "))
CROSSREFS
Sequence in context: A358886 A371678 A009058 * A361541 A218309 A061924
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Aug 31 2016
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 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)