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!)
A190875 E.g.f. exp(x+x^4) 5
1, 1, 1, 1, 25, 121, 361, 841, 21841, 184465, 912241, 3334321, 89824681, 1063799881, 7325422105, 36454050361, 1017339566881, 15314809967521, 134865698721121, 848781820990945, 24508030788375481, 443521231499750041, 4748434334677932361 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
a(n)=n!*sum(j=0..n/3, binomial(n-3*j,j)/(n-3*j)!)
Recurrence: a(n) = a(n-1) + 4*(n-3)*(n-2)*(n-1)*a(n-4). - Vaclav Kotesovec, Jun 26 2013
a(n) ~ 2^(n/2-1)*exp(n^(1/4)/sqrt(2)-3*n/4)*n^(3*n/4). - Vaclav Kotesovec, Jun 26 2013
MATHEMATICA
CoefficientList[Series[E^(x+x^4), {x, 0, 20}], x]* Range[0, 20]! (* Vaclav Kotesovec, Jun 26 2013 *)
PROG
(Maxima)
a(n):=n!*sum(binomial(n-3*j, j)/(n-3*j)!, j, 0, n/3);
(PARI) Vec(serlaplace(exp(x+x^4+O(x^66)))) /* Joerg Arndt, May 24 2011 */
CROSSREFS
Sequence in context: A174371 A062938 A361637 * A205800 A330045 A362349
KEYWORD
nonn
AUTHOR
Vladimir Kruchinin, May 22 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 May 2 12:49 EDT 2024. Contains 372196 sequences. (Running on oeis4.)