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!)
A303064 O.g.f. A(x) satisfies: A(x) = 1 + Integral (x/A(x)^4)' / (x/A(x)^7)' dx. 9
1, 1, 3, 19, 181, 2121, 28035, 401199, 6076494, 96043696, 1569407902, 26338955412, 451829668906, 7894022242204, 140075248932330, 2518908613782600, 45823514062061016, 842108582257569081, 15614889082228858722, 291858857158743005901, 5494258022591894716440, 104097462455681871262881, 1983820645046435115347970, 38007365345354099879246673 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 0..500 (terms 0..200 from Paul D. Hanna)
FORMULA
O.g.f. A(x) satisfies:
(1) A(x) = 1 + Integral (x/A(x)^4)' / (x/A(x)^7)' dx.
(2) A(x) = 1 + Integral A(x)^3 * (A(x) - 4*x*A'(x)) / (A(x) - 7*x*A'(x)) dx.
(3) A(x) = 1 + Integral A(x) * (1 + 4*x*A(x)^2 - sqrt(1 - 20*x*A(x)^2 + 16*x^2*A(x)^4) )/(14*x) dx.
(4) 0 = A(x)^4 - A(x)*(1 + 4*x*A(x)^2)*A'(x) + 7*x*A'(x)^2.
a(n) ~ c * d^n / n^(5/2), where d = 2^(5/3)*(3/7)^(4/9)*(432893979 + 94465211*sqrt(21))^(1/9) = 21.43962319881971664190505405921680468600... and c = 0.022570265358175200394042178896826753964244... - Vaclav Kotesovec, Oct 14 2020, updated Mar 16 2024
EXAMPLE
G.f.: A(x) = 1 + x + 3*x^2 + 19*x^3 + 181*x^4 + 2121*x^5 + 28035*x^6 + 401199*x^7 + 6076494*x^8 + 96043696*x^9 + 1569407902*x^10 + ...
RELATED SERIES.
(x/A(x)^4)' / (x/A(x)^7)' = 1 + 6*x + 57*x^2 + 724*x^3 + 10605*x^4 + 168210*x^5 + 2808393*x^6 + 48611952*x^7 + 864393264*x^8 + 15694079020*x^9 + ...
which equals A'(x).
The logarithmic derivative of the g.f. begins:
A'(x)/A(x) = 1 + 5*x + 49*x^2 + 641*x^3 + 9541*x^4 + 152789*x^5 + 2567293*x^6 + 44643689*x^7 + 796602019*x^8 + 14502820745*x^9 + ...
which equals (1 + 4*x*A(x)^2 - sqrt(1 - 20*x*A(x)^2 + 16*x^2*A(x)^4))/(14*x).
MATHEMATICA
nmax = 25; A = 1; Do[A = 1 + Integrate[D[x/A^4, x]/D[x/A^7, x], x] + O[x]^nmax, nmax]; CoefficientList[A, x] (* Vaclav Kotesovec, Oct 15 2020 *)
PROG
(PARI) {a(n) = my(A=1); for(i=1, n, A = 1 + intformal( (x/A^4)'/(x/A^7 +x*O(x^n))' ); ); polcoeff(A, n)}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
Sequence in context: A269421 A304578 A306576 * A343672 A161630 A371320
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Apr 19 2018
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 04:14 EDT 2024. Contains 371918 sequences. (Running on oeis4.)