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!)
A356541 a(n) = Sum_{d|n} d * (d!)^(n/d-1). 2
1, 3, 4, 9, 6, 33, 8, 121, 118, 643, 12, 7349, 14, 35423, 75904, 378129, 18, 6400179, 20, 46256149, 177951190, 439086871, 24, 21025820825, 1036800026, 80951278619, 1185142088476, 2117428953117, 30, 153033887545887, 32, 859169550303265, 17526860326038562 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
G.f.: Sum_{k>=1} k * x^k/(1 - k! * x^k).
If p is prime, a(p) = 1 + p.
MATHEMATICA
a[n_] := DivisorSum[n, # * (#)!^(n/# - 1) &]; Array[a, 33] (* Amiram Eldar, Aug 30 2023 *)
PROG
(PARI) a(n) = sumdiv(n, d, d*d!^(n/d-1));
(PARI) my(N=40, x='x+O('x^N)); Vec(sum(k=1, N, k*x^k/(1-k!*x^k)))
CROSSREFS
Sequence in context: A054791 A167531 A344195 * A062319 A285265 A330385
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 11 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 September 15 06:53 EDT 2024. Contains 375931 sequences. (Running on oeis4.)