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.

A355128 E.g.f. A(x) satisfies A(x) = 1 + x * A(2 * (exp(x) - 1)).

This page as a plain text file.
%I A355128 #8 Jun 20 2022 08:36:04
%S A355128 1,1,4,54,1928,167770,34128972,15867798142,16621680303888,
%T A355128 38813463431274402,200266228576991017940,2265670919773168963168454,
%U A355128 55816752493202168837392763544,2976116188645489878229876218205674,341574630434025162744892242114482410332
%N A355128 E.g.f. A(x) satisfies A(x) = 1 + x * A(2 * (exp(x) - 1)).
%F A355128 a(0) = 1; a(n) = n * Sum_{k=0..n-1} 2^k * Stirling2(n-1,k) * a(k).
%F A355128 a(n) = n * A355131(n-1) for n>0.
%o A355128 (PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=i*sum(j=0, i-1, 2^j*stirling(i-1, j, 2)*v[j+1])); v;
%Y A355128 Cf. A048801, A355100, A355131.
%K A355128 nonn
%O A355128 0,3
%A A355128 _Seiichi Manyama_, Jun 20 2022