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!)
A209884 E.g.f. A(x) satisfies: A(x/(1-x))/(1-x) = (1/x) * d/dx x^2*A(x)/2. 2
1, 2, 10, 88, 1172, 21688, 527576, 16224640, 612742784, 27786137856, 1486036616448, 92365550416896, 6591134271264000, 534423153792751104, 48801114693060804096, 4980221379342136676352, 564172247490745614434304, 70522894891787889987747840 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
E.g.f.: exp( Sum_{n>=1} 2*x^n / (n*n!) ) = Sum_{n>=0} a(n)*x^n/n!^2.
a(n) = (n-1)! * Sum_{k=0..n-1} 2*binomial(n,k)*a(k)/k! for n>0 with a(0)=1.
EXAMPLE
E.g.f.: A(x) = 1 + 2*x + 10*x^2/2! + 88*x^3/3! + 1172*x^4/4! + 21688*x^5/5! +...
Related expansions:
A(x/(1-x))/(1-x) = 1 + 3*x + 20*x^2/2! + 220*x^3/3! + 3516*x^4/4! +...
A(x) + x*A'(x)/2 = 1 + 3*x + 20*x^2/2! + 220*x^3/3! + 3516*x^4/4! +...
Also, a(n) appears in the expansion:
B(x) = 1 + 2*x + 10*x^2/2!^2 + 88*x^3/3!^2 + 1172*x^4/4!^2 + 21688*x^5/5!^2 +...
such that
log(B(x)) = 2*x + 2*x^2/(2*2!) + 2*x^3/(3*3!) + 2*x^4/(4*4!) + 2*x^5/(5*5!) +...
MATHEMATICA
Table[Sum[BellY[n, k, 2/Range[n]], {k, 0, n}] n!, {n, 0, 20}] (* Vladimir Reshetnikov, Nov 09 2016 *)
PROG
(PARI) {a(n)=local(A=1+x, B); for(i=1, n, B=subst(A, x, x/(1-x+x*O(x^n)))/(1-x); A=1+2*intformal((B-A)/x)); n!*polcoeff(A, n)}
(PARI) {a(n)=if(n<0, 0, if(n==0, 1, (n-1)!*sum(k=0, n-1, 2*binomial(n, k)*a(k)/k!)))}
(PARI) {a(n)=n!^2*polcoeff(exp(sum(m=1, n, 2*x^m/(m*m!))+x*O(x^n)), n)}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
Cf. A193161.
Sequence in context: A186448 A144002 A355098 * A060350 A270923 A096658
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Mar 14 2012
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 17 23:23 EDT 2024. Contains 371767 sequences. (Running on oeis4.)