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!)
A358410 a(n) = Sum_{d|n} (d + n/d - 2)!/(d - 1)!. 1
1, 2, 3, 9, 25, 130, 721, 5069, 40333, 363006, 3628801, 39917607, 479001601, 6227025848, 87178291591, 1307674408449, 20922789888001, 355687428461452, 6402373705728001, 121645100412461861, 2432902008176660217, 51090942171749356812, 1124000727777607680001 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
G.f.: Sum_{k>0} (k-1)! * (x/(1 - x^k))^k.
If p is prime, a(p) = 1 + (p-1)!.
MATHEMATICA
a[n_] := DivisorSum[n, (# + n/# - 2)!/(# - 1)! &]; Array[a, 23] (* Amiram Eldar, Aug 30 2023 *)
PROG
(PARI) a(n) = sumdiv(n, d, (d+n/d-2)!/(d-1)!);
(PARI) my(N=30, x='x+O('x^N)); Vec(sum(k=1, N, (k-1)!*(x/(1-x^k))^k))
CROSSREFS
Sequence in context: A056198 A143742 A038523 * A361863 A096237 A309814
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Nov 14 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 April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)