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!)
A121452 Exponential generating function (1-x^2)^(-1/x). 7
1, 1, 1, 4, 13, 71, 391, 2836, 21729, 198829, 1939501, 21515836, 254169301, 3319328299, 45979476635, 691443303916, 10979537304961, 186915474027321, 3345563762493049, 63613875064443796, 1266776073045809341 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
E.g.f.: (1-x^2)^(-1/x) = Sum_{n>=0} a(n)*x^n/n!.
E.g.f.: exp( (1-x) * Sum_{n>=0} x^n * Sum_{k=1..n+1} x^k/k ). - Paul D. Hanna, May 03 2012
a(n) = n!*Sum_{m=floor((n+1)/2)..n} (-1)^(n-m)*Stirling1(m,2*m-n)/m!. - Vladimir Kruchinin, Mar 09 2013
a(n) ~ n! / 2. - Vaclav Kotesovec, Feb 25 2014
a(0) = 1; a(n) = (n-1)! * Sum_{k=1..floor((n+1)/2)} (2*k-1)/k * a(n-2*k+1)/(n-2*k+1)!. - Seiichi Manyama, May 01 2022
EXAMPLE
E.g.f.: A(x) = 1 + x + x^2/2! + 4*x^3/3! + 13*x^4/4! + 71*x^5/5! + 391*x^6/6! + ... such that 1/A(x)^x = 1 - x^2.
The logarithm of the e.g.f. is given by the series:
log(A(x)) = (1-x)*(x + x*(x+x/2) + x^2*(x+x^2/2+x^3/3) + x^3*(x+x^2/2+x^3/3+x^4/4) + x^4*(x+x^2/2+x^3/3+x^4/4+x^5/5) + ...)
log(A(x) = x + x^3/2 + x^5/3 + x^7/4 + x^9/5 + ...
MATHEMATICA
With[{nn=20}, CoefficientList[Series[(1-x^2)^(-1/x), {x, 0, nn}], x] Range[ 0, nn]!] (* Harvey P. Dale, Sep 28 2013 *)
PROG
(PARI) {a(n)=n!*polcoeff((1-x^2 +x^2*O(x^n))^(-1/x), n)}
(PARI) {a(n)=n!*polcoeff(exp((1-x)*sum(m=0, n, x^m*sum(k=1, m+1, x^k/k)+x*O(x^n))), n)} /* Paul D. Hanna, May 03 2012 */
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(-log(1-x^2)/x))) \\ Seiichi Manyama, May 01 2022
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=(i-1)!*sum(j=1, (i+1)\2, (2*j-1)/j*v[i-2*j+2]/(i-2*j+1)!)); v; \\ Seiichi Manyama, May 01 2022
(PARI) a(n) = n!*sum(k=0, n\2, abs(stirling(n-k, n-2*k, 1))/(n-k)!); \\ Seiichi Manyama, May 01 2022
CROSSREFS
Cf. A087761.
Sequence in context: A042277 A125617 A197969 * A249165 A304598 A171756
KEYWORD
easy,nonn
AUTHOR
Vladeta Jovovic, Sep 07 2006
EXTENSIONS
More terms from Klaus Brockhaus, Sep 10 2006
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 25 09:38 EDT 2024. Contains 371967 sequences. (Running on oeis4.)