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!)
A090011 T(n,k) = number of partitions of binomial(n,k), 0<=k<=n, triangular array read by rows. 2
1, 1, 1, 1, 2, 1, 1, 3, 3, 1, 1, 5, 11, 5, 1, 1, 7, 42, 42, 7, 1, 1, 11, 176, 627, 176, 11, 1, 1, 15, 792, 14883, 14883, 792, 15, 1, 1, 22, 3718, 526823, 4087968, 526823, 3718, 22, 1, 1, 30, 17977, 26543660, 3519222692, 3519222692, 26543660, 17977, 30, 1, 1, 42, 89134 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
a(n) = A000041(A007318(n));
T(n,0) = T(n,n) = 1; T(n,1) = T(n,n-1) = A000041(n), n>0.
LINKS
Indranil Ghosh, Rows 0..20, flattened
Eric Weisstein's World of Mathematics, Partition
Eric Weisstein's World of Mathematics, Binomial Coefficient
EXAMPLE
Triangle begins:
1;
1, 1;
1, 2, 1;
1, 3, 3, 1;
1, 5, 11, 5, 1;
1, 7, 42, 42, 7, 1;
1, 11, 176, 627, 176, 11, 1;
1, 15, 792, 14883, 14883, 792, 15, 1;
1, 22, 3718, 526823, 4087968, 526823, 3718, 22, 1;
1, 30, 17977, 26543660, 3519222692, 3519222692, 26543660, 17977, 30, 1;
1, 42, 89134, 1844349560, 9275102575355, 269232701252579, 9275102575355, 1844349560, 89134, 42, 1; ...
MATHEMATICA
Flatten[Table[PartitionsP[Binomial[n, k]], {n, 0, 10}, {k, 0, n}]] (* Indranil Ghosh, Feb 21 2017 *)
PROG
(PARI) T(n, k)=numbpart(binomial(n, k))
for(n=0, 10, for(k=0, n, print1(T(n, k), ", ")); print()) \\ Paul D. Hanna, Jun 14 2013
CROSSREFS
Cf. A226659 (row sums), A128855 (central terms).
Sequence in context: A261365 A261507 A304942 * A061554 A296373 A345710
KEYWORD
nonn,tabl
AUTHOR
Reinhard Zumkeller, Jan 28 2004
EXTENSIONS
Data section corrected by Indranil Ghosh, Feb 21 2017
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 19 02:10 EDT 2024. Contains 371782 sequences. (Running on oeis4.)