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.

A355208 E.g.f. A(x) satisfies A'(x) = 1 + A(2 * log(1+x)).

This page as a plain text file.
%I A355208 #13 Jun 25 2022 07:12:11
%S A355208 1,2,6,28,236,4400,197552,20430656,4600591488,2179887358272,
%T A355208 2130534442932416,4243581375963409024,17097951082212352465536,
%U A355208 138722374358947243721661440,2260145794657531151029628653568,73822509077371344216463442074629120
%N A355208 E.g.f. A(x) satisfies A'(x) = 1 + A(2 * log(1+x)).
%H A355208 Seiichi Manyama, <a href="/A355208/b355208.txt">Table of n, a(n) for n = 1..82</a>
%F A355208 a(1) = 1; a(n+1) = Sum_{k=1..n} 2^k * Stirling1(n,k) * a(k).
%o A355208 (PARI) a_vector(n) = my(v=vector(n)); v[1]=1; for(i=1, n-1, v[i+1]=sum(j=1, i, 2^j*stirling(i, j, 1)*v[j])); v;
%Y A355208 Cf. A307874, A355133, A355204.
%K A355208 nonn
%O A355208 1,2
%A A355208 _Seiichi Manyama_, Jun 24 2022