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!)
A338193 E.g.f. A(x) satisfies: A(x) = 1 + Integral (x/A(x))' / (x/A(x)^2)' dx. 7
1, 1, 2, 10, 100, 1556, 33016, 888952, 29035280, 1115554960, 49300214176, 2463859486496, 137403573562432, 8459184183342400, 569861708317147520, 41697486853043633536, 3293243089832744386816, 279234174032057551630592, 25299360271944290704683520 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) ~ (1 + sqrt(2))^(2*n - 3/2) * n^(n-2) / (2^(3/4) * exp(n - 1 + 1/sqrt(2))).
E.g.f.: (8*x^2 * (x - 3 + sqrt(1 - 6*x + x^2))^3 / (3*x - 1 + sqrt(1 - 6*x + x^2)))^(1/4) * exp((1 + x - sqrt(1 - 6*x + x^2))/4)/2.
MATHEMATICA
nmax = 20; A = 1; Do[A = 1 + Integrate[D[x/A, x]/D[x/A^2, x], x] + O[x]^nmax, nmax]; CoefficientList[A, x] * Range[0, nmax - 1]!
nmax = 20; FullSimplify[CoefficientList[Series[(8*x^2 * (x - 3 + Sqrt[1 - 6*x + x^2])^3 / (3*x - 1 + Sqrt[1 - 6*x + x^2]))^(1/4) * E^((1 + x - Sqrt[1 - 6*x + x^2])/4)/2, {x, 0, nmax}], x] * Range[0, nmax]!]
PROG
(PARI) {a(n) = my(A=1); for(i=1, n, A = 1 + intformal( (x/A)'/(x/A^2 +x*O(x^n))' ); ); n!*polcoeff(A, n)}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
Sequence in context: A228990 A277468 A099826 * A063959 A101686 A324241
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Oct 15 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 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)