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!)
A300986 E.g.f. A(x) satisfies: [x^n] A(x)^(3*n) = (n + 2) * [x^(n-1)] A(x)^(3*n) for n>=1. 8
1, 1, 3, 37, 1009, 44541, 2799931, 233188033, 24562692897, 3168510747769, 488856473079571, 88597562768075901, 18595324838343722833, 4468203984338696710837, 1217521669261709053889739, 373205252376454629490607641, 127806482596653000272128733761, 48605321514711360780713536416753, 20419150659462692416601828820774307, 9431006202634362924849710001022454869 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Compare to: [x^n] exp(x)^(3*n) = 3 * [x^(n-1)] exp(x)^(3*n) for n>=1.
LINKS
FORMULA
E.g.f. A(x) satisfies: A(x) = exp( x * (A(x) - 2*x*A'(x)) / (A(x) - 3*x*A'(x)) ).
a(n) ~ c * (n!)^2 * n^5, where c = 0.0001464056080437... - Vaclav Kotesovec, Mar 20 2018
EXAMPLE
E.g.f.: A(x) = 1 + x + 3*x^2/2! + 37*x^3/3! + 1009*x^4/4! + 44541*x^5/5! + 2799931*x^6/6! + 233188033*x^7/7! + 24562692897*x^8/8! + 3168510747769*x^9/9! + 488856473079571*x^10/10! + ...
such that [x^n] A(x)^(3*n) = (n+2) * [x^(n-1)] A(x)^(3*n) for n>=1.
RELATED SERIES.
A(x)^3 = 1 + 3*x + 15*x^2/2! + 171*x^3/3! + 4185*x^4/4! + 173583*x^5/5! + 10491039*x^6/6! + 850141575*x^7/7! + 87745941873*x^8/8! + 11141030530395*x^9/9! + ...
ILLUSTRATION OF DEFINITION.
The table of coefficients in A(x)^(3*n) begins:
n=1: [(1), (3), 15/2, 57/2, 1395/8, 57861/40, 1165671/80, 18892035/112, ...];
n=2: [1, (6), (24), 102, 576, 21834/5, 206244/5, 15974712/35, ...];
n=3: [1, 9, (99/2), (495/2), 11259/8, 401463/40, 7120899/80, 525246849/560, ...];
n=4: [1, 12, 84, (492), (2952), 102708/5, 864756/5, 60722784/35, ...];
n=5: [1, 15, 255/2, 1725/2, (44595/8), (312165/8), 5077035/16, 340795215/112, ...];
n=6: [1, 18, 180, 1386, 9720, (349542/5), (2796336/5), 36178488/7, ...];
n=7: [1, 21, 483/2, 4179/2, 127323/8, 4767147/40, (76271139/80), (686440251/80), ...]; ...
in which the coefficients in parenthesis are related by
3 = 3*(1); 24 = 4*(6); 495/2 = 5*(99/2); 2952 = 6*(492); 312165/8 = 7*(44595/8); 2796336/5 = 8*(349542/5); 686440251/80 = 9*(76271139/80); ...
illustrating that: [x^n] A(x)^(3*n) = (n+2) * [x^(n-1)] A(x)^(3*n).
LOGARITHMIC PROPERTY.
The logarithm of the e.g.f. is an integer power series in x satisfying
log(A(x)) = x * (1 - 2*x*A'(x)/A(x)) / (1 - 3*x*A'(x)/A(x));
explicitly,
log(A(x)) = x + x^2 + 5*x^3 + 36*x^4 + 327*x^5 + 3489*x^6 + 42048*x^7 + 559008*x^8 + 8073243*x^9 + 125328411*x^10 + 2075525505*x^11 + 36460943208*x^12 + ... + A300987(n)*x^n + ...
PROG
(PARI) {a(n) = my(A=[1]); for(i=1, n+1, A=concat(A, 0); V=Vec(Ser(A)^(3*(#A-1))); A[#A] = ((#A+1)*V[#A-1] - V[#A])/(3*(#A-1)) ); n!*polcoeff( Ser(A), n)}
for(n=0, 25, print1(a(n), ", "))
(PARI) {a(n) = my(A=1); for(i=1, n, A = exp( x*(A-2*x*A')/(A-3*x*A' +x*O(x^n)) ) ); n!*polcoeff(A, n)}
for(n=0, 25, print1(a(n), ", "))
CROSSREFS
Sequence in context: A201697 A274308 A318224 * A003716 A331345 A357398
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Mar 17 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 August 1 17:30 EDT 2024. Contains 374818 sequences. (Running on oeis4.)