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.

A337186 a(n) = 1 + Sum_{k=0..n-2} binomial(n-2,k) * a(k).

This page as a plain text file.
%I A337186 #8 Jan 29 2021 10:29:33
%S A337186 1,1,2,3,6,14,36,101,308,1013,3562,13300,52482,218045,950614,4335563,
%T A337186 20628882,102153978,525383324,2801105889,15455435864,88117352141,
%U A337186 518391612686,3142762585120,19611454375090,125829007917417,829254498014570,5608225148263459
%N A337186 a(n) = 1 + Sum_{k=0..n-2} binomial(n-2,k) * a(k).
%F A337186 G.f. A(x) satisfies: A(x) = (1/(1 - x)) * (1 + x^2 * A(x/(1 - x))).
%t A337186 a[n_] := a[n] = 1 + Sum[Binomial[n - 2, k] a[k], {k, 0, n - 2}]; Table[a[n], {n, 0, 27}]
%Y A337186 Cf. A000994, A007476, A186021.
%K A337186 nonn
%O A337186 0,3
%A A337186 _Ilya Gutkovskiy_, Jan 29 2021