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!)
A202879 E.g.f.: exp(4*x + x^2/2). 3
1, 4, 17, 76, 355, 1724, 8671, 45028, 240809, 1323460, 7461121, 43079084, 254388667, 1534503676, 9445067375, 59263320964, 378729294481, 2463130313348, 16290919259569, 109500022678540, 747527556645971, 5180110680154684, 36418521410184127, 259636520604139556 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = Sum_{k=0..[n/2]} 4^(n-2*k)/2^k * n!/((n-2*k)!*k!).
O.g.f.: 1/(1-4*x - x^2/(1-4*x - 2*x^2/(1-4*x - 3*x^2/(1-4*x - 4*x^2/(1-4*x -...))))), a continued fraction.
Recurrence: a(n) = 4*a(n-1) + (n-1)*a(n-2). - Vaclav Kotesovec, Oct 20 2012
a(n) ~ exp(4*sqrt(n)-n/2-4)*n^(n/2)/sqrt(2)*(1+11/(3*sqrt(n))). - Vaclav Kotesovec, Oct 20 2012
EXAMPLE
E.g.f.: A(x) = 1 + 4*x + 17*x^2/2! + 76*x^3/3! + 355*x^4/4! + 1724*x^5/5! +...
MATHEMATICA
CoefficientList[Series[E^(4*x+x^2/2), {x, 0, 20}], x]* Range[0, 20]! (* Vaclav Kotesovec, Oct 20 2012 *)
PROG
(PARI) {a(n)=n!*polcoeff(exp(4*x+x^2/2+x*O(x^n)), n)}
(PARI) {a(n)=sum(k=0, n\2, 4^(n-2*k)/2^k * n!/((n-2*k)!*k!))}
(PARI) /* O.g.f. as a continued fraction: */
{a(n)=local(CF=1+4*x+x*O(x^n)); for(k=1, n-1, CF=1/(1-4*x-(n-k)*x^2*CF)); polcoeff(CF, n)}
CROSSREFS
Cf. A202878.
Sequence in context: A081186 A239204 A005572 * A333059 A081922 A124325
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Dec 25 2011
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 September 15 08:55 EDT 2024. Contains 375932 sequences. (Running on oeis4.)