This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A327579 #10 Jun 10 2022 11:07:59 %S A327579 1,4,9,76,125,4686,5047,389768,1995849,62445610,39916811,23574862092, %T A327579 6227020813,5667436494734,55630647072015,2922249531801616, %U A327579 355687428096017,2425220588831040018,121645100408832019,1364553980880330240020,18677216386213152768021,1152100749379237026969622 %N A327579 a(n) = n! * Sum_{d|n} d^(n/d) / d!. %H A327579 Seiichi Manyama, <a href="/A327579/b327579.txt">Table of n, a(n) for n = 1..425</a> %F A327579 E.g.f.: Sum_{k>=1} x^k / ((k - 1)! * (1 - k * x^k)). %t A327579 a[n_] := n! Sum[d^(n/d)/d!, {d, Divisors[n]}]; Table[a[n], {n, 1, 22}] %t A327579 nmax = 22; CoefficientList[Series[Sum[x^k/((k - 1)! (1 - k x^k)), {k, 1, nmax}], {x, 0, nmax}], x] Range[0, nmax]! // Rest %o A327579 (PARI) a(n) = n! * sumdiv(n, d, d^(n/d) / d!); \\ _Michel Marcus_, Sep 17 2019 %Y A327579 Cf. A055225, A057625, A327578, A354843. %K A327579 nonn %O A327579 1,2 %A A327579 _Ilya Gutkovskiy_, Sep 17 2019