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.
%I A309085 #15 Sep 08 2022 08:46:21 %S A309085 1,-4,12,-20,-20,172,108,-2388,-3220,47532,161900,-1062740,-8532628, %T A309085 13623212,431041132,1206169260,-17833021588,-169685043796, %U A309085 180187176044,13462762665132,79377664422252,-553096696140884,-11670986989785492,-44371854928405844,829755609457185644 %N A309085 a(n) = exp(4) * Sum_{k>=0} (-4)^k*k^n/k!. %H A309085 Seiichi Manyama, <a href="/A309085/b309085.txt">Table of n, a(n) for n = 0..564</a> %F A309085 G.f.: Sum_{j>=0} (-4)^j*x^j / Product_{k=1..j} (1 - k*x). %F A309085 E.g.f.: exp(4*(1 - exp(x))). %F A309085 a(n) = Sum_{k=0..n} (-4)^k * Stirling2(n,k). %t A309085 Table[Exp[4] Sum[(-4)^k k^n/k!, {k, 0, Infinity}], {n, 0, 24}] %t A309085 Table[BellB[n, -4], {n, 0, 24}] %t A309085 nmax = 24; CoefficientList[Series[Sum[(-4)^j x^j/Product[(1 - k x), {k, 1, j}] , {j, 0, nmax}], {x, 0, nmax}], x] %t A309085 nmax = 24; CoefficientList[Series[Exp[4 (1 - Exp[x])], {x, 0, nmax}], x] Range[0, nmax]! %o A309085 (Magma) [1] cat [(&+[((-4)^k*StirlingSecond(m,k)):k in [0..m]]):m in [1..24]]; // _Marius A. Burtea_, Jul 11 2019 %o A309085 (PARI) a(n) = sum(k=0, n, (-4)^k * stirling(n,k,2)); \\ _Michel Marcus_, Jul 12 2019 %Y A309085 Column k = 4 of A292861. %Y A309085 Cf. A000587, A078944, A213170, A309084, A318179. %K A309085 sign %O A309085 0,2 %A A309085 _Ilya Gutkovskiy_, Jul 11 2019