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!)
A356667 Expansion of e.g.f. Sum_{k>=0} x^k / (1 - k*x^k/k!). 1
1, 1, 4, 12, 72, 240, 2520, 10080, 127680, 816480, 11037600, 79833600, 1514177280, 12454041600, 261655954560, 2699348652000, 62869385779200, 711374856192000, 19407798693803520, 243290200817664000, 7300765959334848000, 102980278869910041600 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = n! * Sum_{d|n} 1/((d-1)!^(n/d-1)) for n > 0.
a(p) = 2 * p! for prime p.
MATHEMATICA
a[n_]:= n! * DivisorSum[n, 1/(# - 1)!^(n/# - 1) &]; a[0] = 1; Array[a, 22, 0] (* Amiram Eldar, Aug 22 2022 *)
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(sum(k=0, N, x^k/(1-k*x^k/k!))))
(PARI) a(n) = if(n==0, 1, n!*sumdiv(n, d, 1/(d-1)!^(n/d-1)));
CROSSREFS
Cf. A356668.
Sequence in context: A009621 A335907 A013195 * A323295 A166746 A052558
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 22 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 May 2 19:04 EDT 2024. Contains 372203 sequences. (Running on oeis4.)