The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A300991 O.g.f. A(x) satisfies: A(x) = x * (1 - 4*x*A'(x)) / (1 - 5*x*A'(x)). 7
1, 1, 7, 66, 769, 10405, 157540, 2609120, 46569365, 886686635, 17878075475, 379658470550, 8456459003700, 196924945517500, 4781934837995500, 120830066634026000, 3171336593264680125, 86326557180541530375, 2433904105428495204125, 70991247725936793222750, 2139844431980825211095625, 66589703922949982943093125, 2137375830643389417662717500, 70701647390083655222041600000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
O.g.f. equals the logarithm of the e.g.f. of A300990.
The e.g.f. G(x) of A300990 satisfies: [x^n] G(x)^(5*n) = (n+4) * [x^(n-1)] G(x)^(5*n) for n>=1.
LINKS
FORMULA
O.g.f. A(x) satisfies: [x^n] exp( 5*n * A(x) ) = (n + 4) * [x^(n-1)] exp( 5*n * A(x) ) for n>=1.
a(n) ~ c * n! * n^9, where c = 0.00000000758078051425272... - Vaclav Kotesovec, Mar 20 2018
EXAMPLE
O.g.f.: A(x) = x + x^2 + 7*x^3 + 66*x^4 + 769*x^5 + 10405*x^6 + 157540*x^7 + 2609120*x^8 + 46569365*x^9 + 886686635*x^10 + ...
where
A(x) = x * (1 - 4*x*A'(x)) / (1 - 5*x*A'(x)).
RELATED SERIES.
exp(A(x)) = 1 + x + 3*x^2/2! + 49*x^3/3! + 1777*x^4/4! + 101541*x^5/5! + 8140411*x^6/6! + 855134533*x^7/7! + 112545136929*x^8/8! + 17984228218057*x^9/9! + ... + A300990(n)*x^n/n! + ...
A'(x) = 1 + 2*x + 21*x^2 + 264*x^3 + 3845*x^4 + 62430*x^5 + 1102780*x^6 + 20872960*x^7 + 419124285*x^8 + 8866866350*x^9 + ...
PROG
(PARI) {a(n) = my(A=x); for(i=1, n, A = x*(1-4*x*A')/(1-5*x*A' +x*O(x^n))); polcoeff(A, n)}
for(n=1, 25, print1(a(n), ", "))
(PARI) /* [x^n] exp( 5*n * A(x) ) = (n + 4) * [x^(n-1)] exp( 5*n * A(x) ) */
{a(n) = my(A=[1]); for(i=1, n+1, A=concat(A, 0); V=Vec(Ser(A)^(5*(#A-1))); A[#A] = ((#A+3)*V[#A-1] - V[#A])/(5*(#A-1)) ); polcoeff( log(Ser(A)), n)}
for(n=1, 25, print1(a(n), ", "))
CROSSREFS
Sequence in context: A297310 A371780 A065097 * A122705 A185181 A024395
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Mar 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 May 16 20:35 EDT 2024. Contains 372555 sequences. (Running on oeis4.)