login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A064282 Triangle with a(n,k)=C(3n+3,k)*(n-k+1)/(n+1). 1
1, 1, 3, 1, 6, 12, 1, 9, 33, 55, 1, 12, 63, 182, 273, 1, 15, 102, 408, 1020, 1428, 1, 18, 150, 760, 2565, 5814, 7752, 1, 21, 207, 1265, 5313, 15939, 33649, 43263, 1, 24, 273, 1950, 9750, 35880, 98670, 197340, 246675, 1, 27, 348, 2842, 16443, 71253, 237510 (list; table; graph; refs; listen; history; text; internal format)
OFFSET

0,3

LINKS

Harry J. Smith, Table of n, a(n) for n=0,...,1000

FORMULA

a(n, k)=a(n-1, k)+3*a(n-1, k-1)+3*a(n-1, k-2)+a(n-1, k-3) [starting with a(0, 0)=1 and a(n, k)=0 if n<0 or n<k].

PROG

(PARI) { n=-1; for (m=0, 10^9, for (k=0, m, a=binomial(3*m + 3, k)*(m - k + 1)/(m + 1); write("b064282.txt", n++, " ", a); if (n==1000, break)); if (n==1000, break) ) } [From Harry J. Smith, Sep 11 2009]

CROSSREFS

Columns include A000012 and A008585. Right hand columns include A001764 and A006630. Row sums are A047099. Triangles A010054 (Triangle Indicator), A007318 (Pascal) and A050166 form a sequence which has this as its next member.

Sequence in context: A084536 A110770 A106855 * A087644 A049964 A143984

Adjacent sequences:  A064279 A064280 A064281 * A064283 A064284 A064285

KEYWORD

nonn,tabl

AUTHOR

Henry Bottomley, Sep 24 2001

STATUS

approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified June 20 07:21 EDT 2013. Contains 226422 sequences.