login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A095676 Row sums of A095675. 1
1, 5, 28, 179, 1291, 10358, 91337, 876289, 9070546, 100596161, 1188403063, 14881408616, 196696197075, 2734274453061, 39848045797116, 607129121193015, 9646995492421711, 159508268424031670, 2739019526280054917 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
MATHEMATICA
a[0, 0] = 1; a[n_, 0] := a[n - 1, n - 1]; a[n_, k_] := a[n, k] = If[k < n + 1, a[n, k - 1] + a[n - 1, k - 1], 0]; p[n_, r_] := If[r <= n + 1, Binomial[n, r], 0]; am = Table[ a[n, r], {n, 0, 18}, {r, 0, 18}]; pm = Table[p[n, r], {n, 0, 18}, {r, 0, 18}]; t = am.pm; Plus @@@ t (* Robert G. Wilson v, Jul 12 2004 *)
CROSSREFS
Sequence in context: A367889 A082031 A020081 * A324352 A006157 A179326
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, based on a suggestion from Gary W. Adamson, Jun 22 2004
EXTENSIONS
More terms from Robert G. Wilson v, Jul 13 2004
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 13:51 EDT 2024. Contains 371914 sequences. (Running on oeis4.)