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.

A363010 a(n) = n! * [x^n] 1/(1 - f^n(x)), where f(x) = exp(x) - 1.

This page as a plain text file.
%I A363010 #21 May 12 2023 16:26:33
%S A363010 1,1,4,36,594,15775,618838,33757864,2448904188,228290728635,
%T A363010 26617527649365,3797508644987398,651082351708066303,
%U A363010 132130157056046918808,31333332827346731906130,8587011712002719806274022,2693586800519167315881703732,958983405298849163873718493941
%N A363010 a(n) = n! * [x^n] 1/(1 - f^n(x)), where f(x) = exp(x) - 1.
%H A363010 Alois P. Heinz, <a href="/A363010/b363010.txt">Table of n, a(n) for n = 0..246</a>
%F A363010 a(n) = T(n,n), T(n,k) = Sum_{j=0..n} Stirling2(n,j) * T(j,k-1), k>1, T(n,0) = n!.
%p A363010 b:= proc(n, t, m) option remember; `if`(n=0, `if`(t<2, m!,
%p A363010       b(m, t-1, 0)), m*b(n-1, t, m)+b(n-1, t, m+1))
%p A363010     end:
%p A363010 a:= n-> b(n$2, 0):
%p A363010 seq(a(n), n=0..20);  # _Alois P. Heinz_, May 12 2023
%Y A363010 Main diagonal of A363007.
%Y A363010 Main diagonal of A153278 (for n>=1).
%Y A363010 Cf. A139383, A261280, A346802, A351433.
%K A363010 nonn
%O A363010 0,3
%A A363010 _Seiichi Manyama_, May 12 2023