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.

A355203 E.g.f. A(x) satisfies A'(x) = 1 + A(1 - exp(-x)).

This page as a plain text file.
%I A355203 #19 Jun 25 2022 07:36:13
%S A355203 1,1,0,-2,4,10,-150,838,222,-82616,1408364,-13862308,-18747672,
%T A355203 5307622274,-170657860276,3561218897884,-33756455501714,
%U A355203 -1481233045213718,116803294574962288,-5108843717328225572,157037998518149186728,-1976107915155933805542
%N A355203 E.g.f. A(x) satisfies A'(x) = 1 + A(1 - exp(-x)).
%H A355203 Seiichi Manyama, <a href="/A355203/b355203.txt">Table of n, a(n) for n = 1..332</a>
%F A355203 a(1) = 1; a(n+1) = Sum_{k=1..n} (-1)^(n-k) * Stirling2(n,k) * a(k).
%o A355203 (PARI) a_vector(n) = my(v=vector(n)); v[1]=1; for(i=1, n-1, v[i+1]=sum(j=1, i, (-1)^(i-j)*stirling(i, j, 2)*v[j])); v;
%Y A355203 Cf. A003659, A143805, A307874.
%Y A355203 Cf. A355207, A355211, A355217.
%K A355203 sign
%O A355203 1,4
%A A355203 _Seiichi Manyama_, Jun 24 2022