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 A134381 #23 Jun 08 2025 02:46:24 %S A134381 1,2,5,15,52,205,921,4766,28685,201159,1630840,15071725,156331161, %T A134381 1794763970,22548418541,307236496071,4507944378004,70813851019717, %U A134381 1185225078743601,21049903662123422,395303080572770549,7825181077750155999,162835332607069248760 %N A134381 Row sums of triangle A134380. %H A134381 Vaclav Kotesovec, <a href="/A134381/b134381.txt">Table of n, a(n) for n = 0..150</a> %F A134381 Binomial transform of A051295. %F A134381 G.f.: (1 + x/((1-x)*S(0) - x))/(1-x), where S(k) = 1 - (k+1)*x/(1 - x - (k+1)*x/S(k+1)); (continued fraction). - _Sergei N. Gladkovskii_, Feb 05 2015 %F A134381 a(n) ~ exp(1) * (n-1)!. - _Vaclav Kotesovec_, Feb 06 2015 %e A134381 a(3) = 15 = (1, 3, 3, 1) dot (1, 1, 2, 5) = 1 + 3 + 6 + 5, where A051295 = (1, 1, 2, 5, 15, 54, 235, ...). %t A134381 max = 20; Clear[g]; g[max + 2] = 1; g[k_] := g[k] = 1 - (k+1)*x/(1 - x - (k+1)*x/g[k+1]); gf = (1 + x/((1-x)*g[0] -x))/(1-x); CoefficientList[Series[gf, {x, 0, max}], x] (* _Vaclav Kotesovec_, Feb 06 2015, after _Sergei N. Gladkovskii_ *) %Y A134381 Cf. A134380, A051295. %K A134381 nonn %O A134381 0,2 %A A134381 _Gary W. Adamson_, Oct 22 2007 %E A134381 More terms from _Vaclav Kotesovec_, Feb 06 2015