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!)
A110467 Convolution of 4^n*n! and n!. 4
1, 5, 38, 430, 6640, 130200, 3088560, 85828080, 2731899456, 97956720000, 3906077932800, 171436911264000, 8211994618982400, 426284974571904000, 23836815193556736000, 1428394963614554880000, 91316330157374106624000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
E.g.f. (for offset 1): log((1-x)*(1-4*x))/(4*x-5).
a(n) = n!*Sum_{k=0..n} 4^k/binomial(n, k).
a(n) = Sum_{k=0..n} k!*4^k*(n-k)!.
a(n) ~ 4^n * n! * (1 + 1/(4*n) + 1/(8*n^2) + 7/(32*n^3) + 1/(2*n^4) + 187/(128*n^5) + 1337/(256*n^6) + 22559/(1024*n^7) + 109517/(1024*n^8) + 1202047/(2048*n^9) + 14710847/(4096*n^10) + ...). - Vaclav Kotesovec, Dec 07 2020
MATHEMATICA
Table[Sum[k!*4^k*(n - k)!, {k, 0, n}], {n, 0, 50}] (* G. C. Greubel, Aug 28 2017 *)
PROG
(PARI) for(n=0, 50, print1(sum(k=0, n, k!*4^k*(n-k)!), ", ")) \\ G. C. Greubel, Aug 28 2017
CROSSREFS
Sequence in context: A355788 A216858 A338867 * A221845 A299054 A095230
KEYWORD
easy,nonn
AUTHOR
Paul Barry, Jul 21 2005
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 March 29 01:36 EDT 2024. Contains 371264 sequences. (Running on oeis4.)