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!)
A190877 Expansion of e.g.f. exp(x+x^5). 4
1, 1, 1, 1, 1, 121, 721, 2521, 6721, 15121, 1844641, 20013841, 119845441, 519072841, 1816454641, 223394731561, 3501661887361, 29675906201761, 177923109591361, 844925253766561, 104750282797418881 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
LINKS
FORMULA
a(n) = n! * Sum_{j=0..n/4} binomial(n+(-4)*j,j)/(n+(-4)*j)!.
a(n) = a(n-1) + 5! * binomial(n-1,4) * a(n-5) for n > 4. - Seiichi Manyama, Feb 25 2022
MATHEMATICA
With[{nn=30}, CoefficientList[Series[Exp[x+x^5], {x, 0, nn}], x] Range[0, nn]!] (* Harvey P. Dale, Jan 25 2015 *)
PROG
(Maxima) a(n):=n!*sum(binomial(n+(-4)*j, j)/(n+(-4)*j)!, j, 0, n/4);
(PARI) a(n) = if(n<5, 1, a(n-1)+5!*binomial(n-1, 4)*a(n-5)); \\ Seiichi Manyama, Feb 25 2022
CROSSREFS
Sequence in context: A141350 A235408 A361703 * A361636 A354554 A367720
KEYWORD
nonn
AUTHOR
Vladimir Kruchinin, May 23 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 April 23 06:04 EDT 2024. Contains 371906 sequences. (Running on oeis4.)