A181513 Row sums of A181512.
1, 2, 5, 19, 81, 436, 2659
Offset: 1
Keywords
Examples
a(4) = 1+3+3+6+6= 19.
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.
a(4) = 1+3+3+6+6= 19.
The triangle begins: 1; 1, 2; 1, 3, 6; 1, 4, 12, 24; which is A181512 without duplicates.
a181511 n k = a181511_tabl !! (n-1) !! k a181511_row n = a181511_tabl !! (n-1) a181511_tabl = tail $ map init a008279_tabl -- Reinhard Zumkeller, Nov 18 2012
A181511 := proc(n,k) n!/(n-k)! ; end proc: seq(seq(A181511(n,k),k=0..n-1),n=1..16) ; # R. J. Mathar, Mar 03 2011
Comments