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!)
A357480 a(n) = (n!/24) * Sum_{k=0..n-4} 1/k!. 3
0, 0, 0, 0, 1, 10, 75, 560, 4550, 41076, 410970, 4521000, 54252495, 705283150, 9873965101, 148109477880, 2369751647900, 40285778016680, 725144004303300, 13777736081766576, 275554721635336365, 5786649154342069650, 127306281395525539615, 2928044472097087420000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
LINKS
FORMULA
a(n) = n! * Sum_{k=0..n} binomial(k,4)/k!.
a(0) = 0; a(n) = n * a(n-1) + binomial(n,4).
E.g.f.: x^4/24 * exp(x)/(1-x).
G.f.: (1/24) * Sum_{k>=4} k! * x^k/(1-x)^(k+1).
PROG
(PARI) a(n) = n!/24*sum(k=0, n-4, 1/k!);
(PARI) a(n) = n!*sum(k=0, n, binomial(k, 4)/k!);
(PARI) my(N=30, x='x+O('x^N)); concat([0, 0, 0, 0], Vec(serlaplace(x^4/24*exp(x)/(1-x))))
(PARI) my(N=30, x='x+O('x^N)); concat([0, 0, 0, 0], Vec(sum(k=4, N, k!*x^k/(1-x)^(k+1))/24))
CROSSREFS
Column k=4 of A073107.
Sequence in context: A346842 A081017 A238987 * A271476 A025015 A228416
KEYWORD
nonn,easy
AUTHOR
Seiichi Manyama, Sep 30 2022
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 August 26 17:36 EDT 2024. Contains 375462 sequences. (Running on oeis4.)