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!)
A138292 E.g.f. satisfies A(x) = exp(x*A(x^2)). 8
1, 1, 1, 7, 25, 121, 841, 9871, 80977, 869905, 10776241, 131366071, 1821918121, 27671299657, 460068491065, 8716820294911, 162728020119841, 3217989767498401, 69343322972016097, 1533322325194196455 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(n) = T(2*n+1), where T(n,m) = (1+(-1)^(n-m))/2*((n-m)/2)!*sum(k=1..(n-m)/2, m^k*T((n-m)/2,k)/(k!*((n-m-2*k)/4)!)), n>m, T(n,n)=1. - Vladimir Kruchinin, Mar 18 2015
a(0) = 1; a(n) = (n-1)! * Sum_{k=0..floor((n-1)/2)} (2*k+1) * a(k) * a(n-1-2*k) / (k! * (n-1-2*k)!). - Seiichi Manyama, Nov 28 2023
EXAMPLE
E.g.f: A(x) = 1 + x + 1/2*x^2 + 7/6*x^3 + 25/24*x^4 + 121/120*x^5 +...
Log(A(x)) = x + x^3 + 1/2*x^5 + 7/6*x^7 + 25/24*x^9 + 121/120*x^11 +...
PROG
(PARI) {a(n)=local(A=1); for(i=0, n-1, A=exp(x*subst(A, x, x^2+x*O(x^n)))); n!*polcoeff(A, n)}
(Maxima)
T(n, m):=if n=m then 1 else (1+(-1)^(n-m))/2*((n-m)/2)!*sum(m^k*T((n-m)/2, k)/(k!*((n-m-2*k)/4)!), k, 1, (n-m)/2);
makelist(T(2*n-1, 1), n, 1, 20); /* Vladimir Kruchinin, Mar 18 2015 */
CROSSREFS
Sequence in context: A129791 A216688 A141626 * A138738 A057573 A082651
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Mar 13 2008
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 19 23:42 EDT 2024. Contains 372703 sequences. (Running on oeis4.)