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 A000996 M1618 N0632 #38 Aug 09 2020 17:13:16 %S A000996 1,0,0,1,1,1,2,6,17,44,112,304,918,3040,10623,38161,140074,528594, %T A000996 2068751,8436893,35813251,157448068,713084042,3315414747,15805117878, %U A000996 77273097114,387692392570,1996280632656,10542604575130,57034787751655,315649657181821 %N A000996 Shifts 3 places left under binomial transform. %D A000996 N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence). %D A000996 N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence). %H A000996 Alois P. Heinz, <a href="/A000996/b000996.txt">Table of n, a(n) for n = 0..300</a> %H A000996 M. Bernstein and N. J. A. Sloane, <a href="https://arxiv.org/abs/math/0205301">Some canonical sequences of integers</a>, Linear Alg. Applications, 226-228 (1995), 57-72; erratum 320 (2000), 210; arXiv:math/0205301 [math.CO], 2002. %H A000996 M. Bernstein and N. J. A. Sloane, <a href="/A003633/a003633_1.pdf">Some canonical sequences of integers</a>, Linear Alg. Applications, 226-228 (1995), 57-72; erratum 320 (2000), 210. [Link to Lin. Alg. Applic. version together with omitted figures] %H A000996 N. J. A. Sloane, <a href="/transforms.txt">Transforms</a> %H A000996 S. Tauber, <a href="http://www.jstor.org/stable/2308653">On generalizations of the exponential function</a>, Amer. Math. Monthly, 67 (1960), 763-767. %F A000996 G.f. A(x) satisfies: A(x) = 1 + x^3 * A(x/(1 - x)) / (1 - x). - _Ilya Gutkovskiy_, Aug 09 2020 %p A000996 a:= proc(n) option remember; local k; if n<=2 then [1,0,0][n+1] else 1+ add(binomial(n-3,k) *a(k), k=3..n-3) fi end: seq(a(n), n=0..29); # _Alois P. Heinz_, Sep 05 2008 %t A000996 a[n_] := a[n] = If[n <= 2 , {1, 0, 0}[[n+1]], 1+Sum [Binomial[n-3, k]*a[k], {k, 3, n-3}]]; Table[a[n], {n, 0, 30}] (* _Jean-François Alcover_, Mar 24 2014, after _Alois P. Heinz_ *) %Y A000996 Column k=3 of A143983. %K A000996 nonn,eigen %O A000996 0,7 %A A000996 _N. J. A. Sloane_ %E A000996 More terms from _Alois P. Heinz_, Sep 05 2008