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.

A360887 G.f. satisfies A(x) = 1 + x * (1 + x)^2 * A(x * (1 + x)).

This page as a plain text file.
%I A360887 #11 Feb 26 2023 06:56:03
%S A360887 1,1,3,7,22,76,290,1225,5616,27758,147050,829926,4966258,31382572,
%T A360887 208676004,1455540594,10620614461,80869622604,641177678068,
%U A360887 5282866462839,45152445030267,399673570426188,3658433105500600,34582526451125235,337165886689229224
%N A360887 G.f. satisfies A(x) = 1 + x * (1 + x)^2 * A(x * (1 + x)).
%H A360887 Seiichi Manyama, <a href="/A360887/b360887.txt">Table of n, a(n) for n = 0..577</a>
%F A360887 a(0) = 1; a(n) = Sum_{k=0..n-1} binomial(n+1-k,k) * a(n-1-k).
%o A360887 (PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=sum(j=0, i-1, binomial(i+1-j, j)*v[i-j])); v;
%Y A360887 Cf. A360888, A360889.
%K A360887 nonn
%O A360887 0,3
%A A360887 _Seiichi Manyama_, Feb 25 2023