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!)
A338301 O.g.f. satisfies: A(x) = 1/(1 - x - x*( d/dx x^2*A(x)' )). 2
1, 1, 3, 23, 323, 7159, 230277, 10162541, 590407925, 43731367965, 4025536525775, 451018038948011, 60450362738932847, 9552672876260735595, 1757890525033626257001, 372703693123050652667001, 90199912396771101321890057, 24715956305580587510975488025, 7612798125737548130715816004763 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Compare to: F(x) = 1/(1 - x - x^2*F(x)'/F(x)) when F(x) = Sum_{n>=0} n!*x^n.
LINKS
FORMULA
O.g.f. A(x) satisfies:
(1) A(x) = 1/(1 - x * d/dx (x + x^2*A(x)') ).
(2) 0 = [x^n] exp( n * (x + x^2*A(x)') ) / A(x), for n > 0.
a(n) ~ c * n!^2 / n, where c = 3.7361361487236058835975860887998... - Vaclav Kotesovec, Oct 22 2020
EXAMPLE
O.g.f.: A(x) = 1 + x + 3*x^2 + 23*x^3 + 323*x^4 + 7159*x^5 + 230277*x^6 + 10162541*x^7 + 590407925*x^8 + 43731367965*x^9 + 4025536525775*x^10 + ...
where
1/A(x) = 1 - x - 2*x^2 - 18*x^3 - 276*x^4 - 6460*x^5 - 214770*x^6 - 9671634*x^7 - 569102296*x^8 - 42509370600*x^9 - ...
and
d/dx x^2*A(x)' = 2*x + 18*x^2 + 276*x^3 + 6460*x^4 + 214770*x^5 + 9671634*x^6 + 569102296*x^7 + 42509370600*x^8 + ...
PROG
(PARI) /* A(x) = 1/(1 - x - x*( d/dx x^2*A(x)' )) */
{a(n) = my(A=1+x); for(i=1, n, A=1/(1 - x - x*deriv(x^2*A'+x*O(x^n)))); polcoeff(A, n)}
for(n=0, 31, print1(a(n), ", "))
(PARI) /* [x^n] exp( n * (x + x^2*A(x)') ) / A(x) = 0 */
{a(n) = my(A=[1], m); for(i=1, n, A=concat(A, 0); m=#A; A[m] = Vec( exp( (m-1)*x*(1+x*Ser(A)') ) / Ser(A) )[m] ); A[n+1]}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
Sequence in context: A188313 A227821 A222076 * A129458 A118184 A027486
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Oct 21 2020
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 00:30 EDT 2024. Contains 371917 sequences. (Running on oeis4.)