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!)
A348314 a(n) = n! * Sum_{k=0..n-1} 4^k / k!. 1
0, 1, 10, 78, 568, 4120, 30864, 244720, 2088832, 19389312, 196514560, 2173194496, 26128665600, 339890756608, 4759410116608, 71395178280960, 1142340032364544, 19419853564641280, 349557673401188352, 6641597100292636672, 132831947503410872320, 2789470920661372502016 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
E.g.f.: x * exp(4*x) / (1 - x).
a(0) = 0; a(n) = n * (a(n-1) + 4^(n-1)).
a(n) ~ exp(4)*n!. - Stefano Spezia, Oct 11 2021
MATHEMATICA
Table[n! Sum[4^k/k!, {k, 0, n - 1}], {n, 0, 21}]
nmax = 21; CoefficientList[Series[x Exp[4 x]/(1 - x), {x, 0, nmax}], x] Range[0, nmax]!
PROG
(PARI) a(n) = n!*sum(k=0, n-1, 4^k/k!); \\ Michel Marcus, Oct 11 2021
CROSSREFS
Sequence in context: A082136 A153596 A316595 * A056986 A243247 A222701
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Oct 11 2021
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 04:23 EDT 2024. Contains 371264 sequences. (Running on oeis4.)