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!)
A257544 E.g.f.: 1/(1 - x/(1 - (x^2/2!)/(1 - (x^3/3!)/(1 - (x^4/4!)/(1 - (x^5/5!)/(1 -... (x^n/n!)/(1 -...))))))), a continued fraction. 3
1, 1, 2, 9, 48, 330, 2760, 26670, 295680, 3686760, 51067800, 778239000, 12937478400, 232997965200, 4518981066600, 93905637625800, 2081477759961600, 49020847858382400, 1222400311155223200, 32175639432544608000, 891491725439101987200, 25935626681521134177600, 790459388855441635730400 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Limit n * a(n)/a(n+1) = 0.721838205529056...
LINKS
FORMULA
a(n) ~ c * d^n * n!, where d = 1.385351997636466377154331548358490992212171811742252828163104808424069377... and c = 0.54049290018070557137173379570192477214723097220914603426642758802700306... - Vaclav Kotesovec, Aug 24 2017
EXAMPLE
E.g.f.: A(x) = 1 + x + 2*x^2/2! + 9*x^3/3! + 48*x^4/4! + 330*x^5/5! +...
where
A(x) = 1 / (1 - x / (1 - (x^2/2!) / (1 - (x^3/3!) / (1 - (x^4/4!) / (1 - (x^5/5!) / (1 - (x^6/6!) / (1 - (x^7/7!) / (1 -...))))))))).
MATHEMATICA
nmax = 30; CoefficientList[Series[1/Fold[(1 - #2/#1) &, 1, Reverse[x^Range[nmax + 1]/Range[nmax + 1]!]], {x, 0, nmax}], x] * Range[0, nmax]! (* Vaclav Kotesovec, Aug 24 2017 *)
PROG
(PARI) {a(n)=local(CF=1+x*O(x^n), M=n+1); for(k=0, M, CF=1/(1-x^(M-k+1)/(M-k+1)!*CF)); n!*polcoeff(CF, n, x)}
for(n=0, 25, print1(a(n), ", "))
CROSSREFS
Sequence in context: A358264 A246759 A191005 * A295944 A356632 A224140
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Apr 28 2015
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 23 16:40 EDT 2024. Contains 371916 sequences. (Running on oeis4.)