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!)
A181506 TNP(n,k) triangle read by rows. TNP(n,k) is the number of triangular-number partitions of n with k parts. 2
1, 0, 1, 1, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 1, 0, 0, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 2, 1, 1, 1, 1, 1, 0, 1, 0, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,69
COMMENTS
The nonzero triangular numbers are of the form binomial(n, 2) for n = 2, 3, 4, ... namely: 1, 3, 6, 10, 15, 21, 28, ....
A triangular-number partition of n is a partition of n all of whose parts are triangular numbers. For example, (7 =) 1+6 = 1+3+3 = 1+1+1+1+3 are three different triangular-number partitions of 7; the first has 2 parts, the second has 3 parts, and the third has 5 parts.
TNP(n, k) is the number of triangular-number partitions of n with k parts.
This sequence is the TNP(n, k) triangle read by rows.
LINKS
John P. McSorley and Alan H. Schoen, Rhombic tilings of (n,k)-ovals, (n, k, lambda)-cyclic difference sets, and related topics, Discrete Math., 313 (2013), 129-154.
FORMULA
G.f.: 1 / Product_{k>=1} (1 - z*x^T(k)) where T(k) = A000217(k). - Joerg Arndt, Aug 10 2015
EXAMPLE
The triangle begins
1
0 1
1 0 1
0 1 0 1
0 0 1 0 1
1 1 0 1 0 1
0 1 1 0 1 0 1
0 0 1 1 0 1 0 1
0 1 1 1 1 0 1 0 1
1 0 1 1 1 1 0 1 0 1
0 1 0 1 1 1 1 0 1 0 1
0 1 2 1 1 1 1 1 0 1 0 1
For example, row 12 is 0 1 2 1 1 1 1 1 0 1 0 1.
We have TNP(12, 1) = 0 because 12 is not a triangular number.
We have TNP(12, 2) = 1 because 6+6 is the unique triangular-number partition of 12 with 2 parts.
And we have TNP(12, 3) = 2 because 3+3+6 and 1+1+10 are the 2 triangular-number partitions of 12 with 3 parts.
PROG
(PARI) T(n)={[Vecrev(p/y) | p<-Vec(-1 + 1/prod(k=1, (sqrtint(8*n+1)-1)\2, 1 - y*x^binomial(k+1, 2) + O(x*x^n)))]}
{ my(A=T(12)); for(n=1, #A, print(A[n])) } \\ Andrew Howroyd, Sep 26 2019
CROSSREFS
The row sums of the TNP(n, k) triangle give sequence A007294; the n-th term of A007294 is the total number of triangular-number partitions of n.
Sequence in context: A347822 A079635 A037909 * A319797 A169987 A267611
KEYWORD
nonn,tabl
AUTHOR
John P. McSorley, Oct 24 2010
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 26 05:42 EDT 2024. Contains 371989 sequences. (Running on oeis4.)