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.

A345177 a(0) = 1, a(1) = 0; a(n+2) = Sum_{k=0..n} Stirling2(n,k) * a(k).

This page as a plain text file.
%I A345177 #9 Aug 13 2021 21:20:25
%S A345177 1,0,1,0,1,3,8,28,149,1029,8039,69375,675541,7584630,98484836,
%T A345177 1457695370,24117255106,439505090491,8756668806615,190293641816660,
%U A345177 4508138040317573,116298682305458460,3258081214212853975,98709283556190931672,3219222306795403565116,112538217720491999726102
%N A345177 a(0) = 1, a(1) = 0; a(n+2) = Sum_{k=0..n} Stirling2(n,k) * a(k).
%H A345177 Alois P. Heinz, <a href="/A345177/b345177.txt">Table of n, a(n) for n = 0..355</a>
%p A345177 b:= proc(n, m) option remember; `if`(n=0,
%p A345177       a(m), m*b(n-1, m)+b(n-1, m+1))
%p A345177     end:
%p A345177 a:= n-> `if`(n<2, 1-n, b(n-2, 0)):
%p A345177 seq(a(n), n=0..25);  # _Alois P. Heinz_, Aug 13 2021
%t A345177 a[0] = 1; a[1] = 0; a[n_] := a[n] = Sum[StirlingS2[n - 2, k] a[k], {k, 0, n - 2}]; Table[a[n], {n, 0, 25}]
%t A345177 nmax = 25; A[_] = 0; Do[A[x_] = 1 + Normal[Integrate[Integrate[A[Exp[x] - 1 + O[x]^(nmax + 1)], x], x] + O[x]^(nmax + 1)], nmax]; CoefficientList[A[x], x] Range[0, nmax]!
%Y A345177 Cf. A000994, A003659, A007469, A345178.
%K A345177 nonn
%O A345177 0,6
%A A345177 _Ilya Gutkovskiy_, Jun 10 2021