|
| |
|
|
A117278
|
|
Triangle read by rows: T(n,k) is the number of partitions of n into k prime parts (n>=2, 1<=k<=floor(n/2)).
|
|
0
| |
|
|
1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 2, 1, 0, 2, 1, 1, 1, 1, 0, 2, 2, 1, 0, 1, 2, 2, 1, 1, 1, 1, 2, 2, 2, 1, 0, 2, 1, 3, 2, 1, 1, 0, 1, 3, 2, 3, 2, 1, 0, 2, 2, 3, 3, 2, 1, 1, 1, 0, 4, 3, 3, 3, 2, 1, 0, 2, 2, 4, 3, 4, 2, 1, 1, 1, 1, 3, 4, 5, 3, 3, 2, 1, 0, 2, 2, 6, 4, 4, 4, 2, 1, 1, 0, 1, 5, 3, 6
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 2,19
|
|
|
COMMENTS
| Row n has floor(n/2) terms. Row sums yield A000607. T(n,1)=A010051(n) (the characteristic function of the primes). T(n,2)=A061358(n). Sum(k*T(n,k),k>=1) = A084993(n).
|
|
|
FORMULA
| G.f.=G(t,x)=-1+1/product(1-tx^(p(j)), j=1..infinity), where p(j) is the j-th prime.
|
|
|
EXAMPLE
| T(12,3)=2 because we have [7,3,2] and [5,5,2].
Triangle starts:
1;
1;
0,1;
1,1;
0,1,1;
1,1,1;
0,1,1,1;
0,1,2,1;
|
|
|
MAPLE
| g:=1/product(1-t*x^(ithprime(j)), j=1..30): gser:=simplify(series(g, x=0, 30)): for n from 2 to 22 do P[n]:=sort(coeff(gser, x^n)) od: for n from 2 to 22 do seq(coeff(P[n], t^j), j=1..floor(n/2)) od; # yields sequence in triangular form
|
|
|
CROSSREFS
| Cf. A000607, A010051, A061358, A084993.
Sequence in context: A190676 A135486 A030187 * A140082 A025852 A190762
Adjacent sequences: A117275 A117276 A117277 * A117279 A117280 A117281
|
|
|
KEYWORD
| nonn,tabf
|
|
|
AUTHOR
| Emeric Deutsch (deutsch(AT)duke.poly.edu), Mar 07 2006
|
| |
|
|