login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A348146
a(n) = Sum_{d|n} (d!)^(n-d).
3
1, 2, 2, 6, 2, 234, 2, 331842, 46658, 24883200258, 2, 139314179589392898, 2, 82606411253903523840004098, 619173642242176782338, 6984964247141514123665660725036072962, 2, 109110688415571335888754861121236891599318185050114, 2
OFFSET
1,2
LINKS
FORMULA
a(p) = 2 for primes p.
G.f.: Sum_{k>=1} x^k/(1 - (k! * x)^k). - Seiichi Manyama, Oct 03 2021
MATHEMATICA
Table[Sum[(i!)^(n - i) (1 - Ceiling[n/i] + Floor[n/i]), {i, n}], {n, 20}]
PROG
(PARI) a(n) = sumdiv(n, d, d!^(n-d)); \\ Seiichi Manyama, Oct 03 2021
(PARI) my(N=20, x='x+O('x^N)); Vec(sum(k=1, N, x^k/(1-(k!*x)^k))) \\ Seiichi Manyama, Oct 03 2021
CROSSREFS
KEYWORD
nonn
AUTHOR
Wesley Ivan Hurt, Oct 02 2021
STATUS
approved