login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A087912 Expansion of exp(2*x/(1-x))/(1-x). 0
1, 3, 14, 86, 648, 5752, 58576, 671568, 8546432, 119401856, 1815177984, 29808908032, 525586164736, 9898343691264, 198227905206272, 4204989697906688, 94163381359509504, 2219240984918720512 (list; graph; refs; listen; history; internal format)
OFFSET

0,2

FORMULA

a(n) = n!*LaguerreL(n, -2).

a(n) = Sum_{k=0..n} 2^k*(n-k)!*binomial(n, k)^2.

E.g.f.: exp(x) * Sum_{n>=0} 2^n*x^n/n!^2 = Sum_{n>=0} a(n)*x^n/n!^2. [From Paul D. Hanna, Nov 18 2011]

MAPLE

a := proc(n) option remember: if n=0 then RETURN(1) fi: if n=1 then RETURN(1) fi: (2*n-1)*a(n-1) - (n-2)*(n-2)*a(n-2) end:for n from 1 to 18 do printf(`%d, `, a(n)) od: - Zerinvary Lajos (zerinvarylajos(AT)yahoo.com), Sep 26 2006

PROG

{a(n)=n!^2*polcoeff(exp(x+x*O(x^n))*sum(m=0, n, 2^m*x^m/m!^2), n)} [From Paul D. Hanna, Nov 18 2011]

CROSSREFS

Sequence in context: A005189 A074520 A127715 * A051818 A091102 A132624

Adjacent sequences:  A087909 A087910 A087911 * A087913 A087914 A087915

KEYWORD

nonn

AUTHOR

Vladeta Jovovic (vladeta(AT)eunet.rs), Oct 18 2003

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 16 06:37 EST 2012. Contains 205860 sequences.