cp's OEIS Frontend

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.

A355669 a(n) = n! * Sum_{d|n} (d!)^(d - n/d).

This page as a plain text file.
%I A355669 #28 Aug 21 2022 14:10:20
%S A355669 1,6,222,331824,24883200120,139314069504005400,
%T A355669 82606411253903523840005040,6984964247141514123629140377623274720,
%U A355669 109110688415571316480344899355894085582848000725760,395940866122425193243875570782668457763038822400000006270570482400
%N A355669 a(n) = n! * Sum_{d|n} (d!)^(d - n/d).
%F A355669 E.g.f.: Sum_{k>=1} (k! * x)^k/(k! - x^k).
%t A355669 a[n_] := n! * DivisorSum[n, (#!)^(# - n/#) &]; Array[a, 10] (* _Amiram Eldar_, Aug 21 2022 *)
%o A355669 (PARI) a(n) = n!*sumdiv(n, d, d!^(d-n/d));
%o A355669 (PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(sum(k=1, N, (k!*x)^k/(k!-x^k))))
%Y A355669 Cf. A061095, A345465, A351165, A356662.
%K A355669 nonn
%O A355669 1,2
%A A355669 _Seiichi Manyama_, Aug 21 2022