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 A275871 #8 Aug 20 2016 23:49:48 %S A275871 1,1,4,15,61,272,1317,6865,38278,227093,1426921,9457918,65898275, %T A275871 481177881,3672102116,29218285875,241873478425,2079079678176, %U A275871 18524191138689,170803860905237,1627465240969382 %N A275871 Row sums and second diagonal of A046934. %C A275871 The offset corresponds to the definition of A046934. %C A275871 Differences of A032346 and of A032347. %t A275871 Clear[d]; d[0] = 1; d[1] = 0; d[n_] := d[n] = %t A275871 1 + Sum[Binomial[n - 1, j]*d[j], {j, 2, n - 1}]; Table[ %t A275871 d[n + 2] - d[n + 1], {n, 0, 22}] (* From the code by J.-F. Alcover and Jon Perry in A032347 *) %Y A275871 Cf. A046934, A046935, A032346, A032347. %Y A275871 Cf. A005493 (first differences of Bell numbers, second diagonal and row sum of A011971). %K A275871 nonn,easy %O A275871 0,3 %A A275871 _Olivier Gérard_, Aug 11 2016