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 A193464 #8 Mar 30 2012 18:59:51 %S A193464 0,2,7,30,146,852,5823,45740,405844,4012710,43733975,520795002, %T A193464 6726601062,93651619880,1398047697151,22275111534552,377278848390248, %U A193464 6768744159489930,128228860181918439,2557808459478878870,53585748788874537850,1176328664895760953852 %N A193464 Row sums of triangle A076731. %F A193464 a(n) = sum(A076731(n,k), k=1..n). %F A193464 a(n) = sum((1/(n-k)!)*A061312(n-1,k-1), k=1..n). %F A193464 a(n) = sum((1/(n-k)!)*sum(((-1)^j)*binomial(k,j)*(n-j)!, j=0..k), k=1..n). %p A193464 A193464 := proc(n): add(A076731(n,k), k=1..n) end: A076731:=proc(n,k): (1/(n-k)!)*A061312(n-1,k-1) end: A061312:=proc(n,k): add(((-1)^j)*binomial(k+1,j)*(n+1-j)!, j=0..k+1) end: seq(A193464(n), n=1..22); %K A193464 nonn,easy %O A193464 1,2 %A A193464 _Johannes W. Meijer_, Jul 27 2011