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!)
A280575 E.g.f. satisfies: A(x - Integral 4*A(x) dx) = x + Integral A(x) dx. 10

%I #14 Sep 30 2019 08:45:18

%S 1,5,85,2625,119225,7209725,547774525,50342086425,5448583486625,

%T 680816992367125,96720369562897125,15433474653279056625,

%U 2738894920523846767625,536165521694896664958125,114986014404299081313978125,26857525461337375682549015625,6797751676147997291181732240625,1856223312322488721077123869053125,544728880837527263669006279810003125,171209466763535665605709125529165390625

%N E.g.f. satisfies: A(x - Integral 4*A(x) dx) = x + Integral A(x) dx.

%F E.g.f. A(x) satisfies:

%F (1) A(x - Integral 4*A(x) dx) = x + Integral A(x) dx.

%F (2) A(x) = x + 5 * G( (4*A(x) + x)/5 ), where G(x) = Integral A(x) dx.

%F (3) A(x) = -x/4 + 5/4 * Series_Reversion(x - Integral 4*A(x) dx).

%F (4) A( (4*A(x) + x)/5 ) = (A'(x) - 1)/(4*A'(x) + 1).

%F (5) A'(x - Integral 4*A(x) dx) = (1 + A(x))/(1 - 4*A(x)).

%F a(n) = Sum_{k=0..n-1} A277410(n,k) * 4^k * 5^(n-k-1).

%e E.g.f.: A(x) = x + 5*x^2/2! + 85*x^3/3! + 2625*x^4/4! + 119225*x^5/5! + 7209725*x^6/6! + 547774525*x^7/7! + 50342086425*x^8/8! + 5448583486625*x^9/9! + 680816992367125*x^10/10! + 96720369562897125*x^11/11! + 15433474653279056625*x^12/12! +...

%e Let G(x) = Integral A(x) dx, then A(x - 4*G(x)) = x + G(x) where

%e G(x) = x^2/2! + 5*x^3/3! + 85*x^4/4! + 2625*x^5/5! + 119225*x^6/6! + 7209725*x^7/7! + 547774525*x^8/8! + 50342086425*x^9/9! + 5448583486625*x^10/10! + 680816992367125*x^11/11! + 96720369562897125*x^12/12! +...

%e Also, A(x) = x + 5 * G( (4*A(x) + x)/5 ).

%e RELATED SERIES.

%e We have (4*A(x) + x)/5 = Series_Reversion( x - Integral 4*A(x) dx ), where

%e (4*A(x) + x)/5 = x + 4*x^2/2! + 68*x^3/3! + 2100*x^4/4! + 95380*x^5/5! + 5767780*x^6/6! + 438219620*x^7/7! + 40273669140*x^8/8! + 4358866789300*x^9/9! + 544653593893700*x^10/10! + 77376295650317700*x^11/11! + 12346779722623245300*x^12/12! +...

%e Further, A( (4*A(x) + x)/5 ) = (A'(x) - 1)/(4*A'(x) + 1), which begins

%e A( (4*A(x) + x)/5 ) = x + 9*x^2/2! + 213*x^3/3! + 8365*x^4/4! + 463905*x^5/5! + 33459905*x^6/6! + 2985550445*x^7/7! + 318647659765*x^8/8! + 39707695580825*x^9/9! + 5672802966674825*x^10/10! + 916011286267596325*x^11/11! + 165283895506659660925*x^12/12! +...

%t m = 21; A[_] = 0;

%t Do[A[x_] = -x/4 + 5/4 InverseSeries[x-Integrate[4A[x], x] + O[x]^m], {m}];

%t CoefficientList[A[x], x]*Range[0, m - 1]! // Rest (* _Jean-François Alcover_, Sep 30 2019 *)

%o (PARI) /* A(x) = x + (p+q)*G((p*A(x) + q*x)/(p+q)) ; G(x) = Integral A(x) dx: */

%o {a(n, p=4, q=1) = my(A=x, G); for(i=1, n, G = intformal(A +x*O(x^n)); A = x + (p+q)*subst(G, x, (p*A + q*x)/(p+q)) +x*O(x^n)); n!*polcoeff(A, n)}

%o for(n=1, 30, print1(a(n, 4, 1), ", "))

%o (PARI) /* A(x - Integral p*A(x) dx) = x + Integral q*A(x) dx: */

%o {a(n, p=4, q=1) = my(A=[1], F=x); for(i=1, n, A=concat(A, 0); F=x*Ser(A); G=intformal(F); A[#A] = -polcoeff(subst(F, x, x - p*G) - q*G, #A) ); n!*A[n]}

%o for(n=1, 30, print1(a(n, 4, 1), ", "))

%o (PARI) /* Informal code to generate the first N terms: */

%o {N=20; p=4; q=1; A=x; for(i=1, N, G=intformal(A +x*O(x^N)); A = x + (p+q)*subst(G, x, (p*A + q*x)/(p+q))); Vec(serlaplace(A))}

%Y Cf. A277410, A210949, A277403, A279843, A279844, A279845, A280571, A280572, A280573, A280574.

%K nonn

%O 1,2

%A _Paul D. Hanna_, Jan 05 2017

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 July 26 06:18 EDT 2024. Contains 374615 sequences. (Running on oeis4.)