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.

A346196 a(n) = Sum_{d|n} (d!)^n.

This page as a plain text file.
%I A346196 #45 Aug 30 2023 02:00:21
%S A346196 1,5,217,331793,24883200001,139314069504046721,
%T A346196 82606411253903523840000001,6984964247141514123629140487675314433,
%U A346196 109110688415571316480344899355894085582848010077697,395940866122425193243875570782668457763038823019173642240000001025
%N A346196 a(n) = Sum_{d|n} (d!)^n.
%H A346196 Seiichi Manyama, <a href="/A346196/b346196.txt">Table of n, a(n) for n = 1..30</a>
%F A346196 G.f.: Sum_{k >= 1} (k! * x)^k/(1 - (k! * x)^k).
%F A346196 If p is prime, a(p) = 1 + (p!)^p.
%t A346196 a[n_] := DivisorSum[n, (#!)^n &]; Array[a, 10] (* _Amiram Eldar_, Aug 30 2023 *)
%o A346196 (PARI) a(n) = sumdiv(n, d, d!^n);
%o A346196 (PARI) my(N=20, x='x+O('x^N)); Vec(sum(k=1, N, (k!*x)^k/(1-(k!*x)^k)))
%Y A346196 Cf. A023887, A036739, A217576, A345465, A348146.
%K A346196 nonn
%O A346196 1,2
%A A346196 _Seiichi Manyama_, Jul 10 2021