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!)
A316219 Number of triangles of weight prime(n) in the multiorder of integer partitions of prime numbers into prime parts. 5
1, 1, 3, 6, 15, 31, 92, 161, 464, 2347, 3987, 18202, 50136, 81722, 214976, 903048, 3684567, 5842249, 23206424, 57341256, 89938662, 343306266, 829972421, 3084219358, 17375700038, 40920517008, 62656899579, 146415515992, 223442878751, 518427758704, 9544240589455, 21746920337606 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
A prime partition is an integer partition of a prime number into prime parts. Then a(n) is the number of sequences of prime partitions whose sums are weakly decreasing and sum to the n-th prime number.
LINKS
MATHEMATICA
nn=20;
pen[n_]:=pen[n]=SeriesCoefficient[Product[1/(1-x^p), {p, Select[Range[n], PrimeQ]}], {x, 0, n}]
Table[Sum[Times@@pen/@p, {p, Select[IntegerPartitions[Prime[n]], And@@PrimeQ/@#&]}], {n, nn}]
PROG
(PARI)
P(n, f)={1/prod(k=1, n, 1 - f(k)*x^prime(k) + O(x*x^prime(n)))}
seq(n)={my(p=P(n, i->1), q=P(n, i->polcoef(p, prime(i)))); vector(n, k, polcoef(q, prime(k)))} \\ Andrew Howroyd, Jan 16 2023
CROSSREFS
Sequence in context: A244711 A244712 A006961 * A034740 A367293 A323936
KEYWORD
nonn
AUTHOR
Gus Wiseman, Jun 26 2018
EXTENSIONS
Terms a(16) and beyond from Andrew Howroyd, Jan 16 2023
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 27 05:51 EDT 2024. Contains 372009 sequences. (Running on oeis4.)