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.

A321974 Expansion of e.g.f. exp(exp(x)/(1 - x) - 1).

This page as a plain text file.
%I A321974 #22 Jan 09 2019 09:14:22
%S A321974 1,2,9,54,404,3598,37003,430300,5571147,79358032,1231990840,
%T A321974 20684884234,373208232229,7197079035318,147658793214733,
%U A321974 3210107125516682,73690798853163884,1780718798351625094,45171972342078432287,1199948465249850848608,33305064129201851432591,963911863209583899492324
%N A321974 Expansion of e.g.f. exp(exp(x)/(1 - x) - 1).
%F A321974 a(0) = 1; a(n) = Sum_{k=1..n} A000522(k)*binomial(n-1,k-1)*a(n-k).
%F A321974 a(n) ~ exp(-exp(1)/2 - 3/4 + 2*exp(1/2)*sqrt(n) - n) * n^(n - 1/4) / sqrt(2). - _Vaclav Kotesovec_, Dec 19 2018
%p A321974 seq(n!*coeff(series(exp(exp(x)/(1 - x) - 1), x=0, 22), x, n), n=0..21); # _Paolo P. Lava_, Jan 09 2019
%t A321974 nmax = 21; CoefficientList[Series[Exp[Exp[x]/(1 - x) - 1], {x, 0, nmax}], x] Range[0, nmax]!
%t A321974 a[n_] := a[n] = Sum[Floor[Exp[1] k!] Binomial[n - 1, k - 1] a[n - k], {k, n}]; a[0] = 1; Table[a[n], {n, 0, 21}]
%Y A321974 Cf. A000262, A000522, A318364, A321989.
%K A321974 nonn
%O A321974 0,2
%A A321974 _Ilya Gutkovskiy_, Dec 19 2018