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!)
A301741 a(n) = n! * [x^n] exp((n + 1)*x + x^2/2). 1
1, 2, 10, 76, 778, 10026, 155884, 2839880, 59339004, 1399069450, 36746349496, 1064024248068, 33676500286840, 1156685567791586, 42850609041047760, 1703182952266379536, 72299420602524921616, 3264579136056004359570, 156238968782480840396704, 7900247992586138688381500 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
N. J. A. Sloane, Transforms
FORMULA
a(n) = [x^n] 1/(1 - (n + 1)*x - x^2/(1 - (n + 1)*x - 2*x^2/(1 - (n + 1)*x - 3*x^2/(1 - ...)))), a continued fraction.
a(n) = Sum_{k=0..floor(n/2)} n!*(n + 1)^(n-2*k)/(2^k*k!*(n - 2*k)!).
a(n) ~ exp(3/2) * n^n. - Vaclav Kotesovec, Apr 08 2018
MATHEMATICA
Table[n! SeriesCoefficient[Exp[(n + 1) x + x^2/2], {x, 0, n}], {n, 0, 19}]
Table[SeriesCoefficient[1/(1 - (n + 1) x + ContinuedFractionK[-k x^2, 1 - (n + 1) x, {k, 1, n}]), {x, 0, n}], {n, 0, 19}]
Table[Sum[n! (n + 1)^(n - 2 k)/(2^k k! (n - 2 k)!), {k, 0, Floor[n/2]}], {n, 0, 19}]
PROG
(GAP) List([0..10], n->Sum([0..Int(n/2)], k->Factorial(n)*(n+1)^(n-2*k)/(2^k*Factorial(k)*Factorial(n-2*k)))); # Muniru A Asiru, Mar 26 2018
CROSSREFS
Sequence in context: A295929 A195136 A294573 * A140763 A245307 A292632
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Mar 26 2018
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 21 22:16 EDT 2024. Contains 372741 sequences. (Running on oeis4.)