[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Revision History for A341980 (Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing all changes.
Number of partitions of n into 9 distinct primes (counting 1 as a prime).
(history; published version)
#9 by Alois P. Heinz at Thu Feb 24 09:58:31 EST 2022
STATUS

proposed

approved

#8 by Jean-François Alcover at Thu Feb 24 09:53:28 EST 2022
STATUS

editing

proposed

#7 by Jean-François Alcover at Thu Feb 24 09:49:18 EST 2022
MATHEMATICA

b[n_, i_] := b[n, i] = Series[If[n == 0, 1,

If[i < 0, 0, Function[p, If[p > n, 0, x*b[n - p, i - 1]]][

If[i == 0, 1, Prime[i]]] + b[n, i - 1]]], {x, 0, 10}];

a[n_] := Coefficient[b[n, PrimePi[n]], x, 9];

Table[a[n], {n, 78, 151}] (* Jean-François Alcover, Feb 24 2022, after Alois P. Heinz *)

STATUS

approved

editing

#6 by Alois P. Heinz at Wed Feb 24 21:55:47 EST 2021
STATUS

editing

approved

#5 by Alois P. Heinz at Wed Feb 24 21:55:44 EST 2021
MAPLE

b:= proc(n, i) option remember; series(`if`(n=0, 1,

`if`(i<0, 0, (p-> `if`(p>n, 0, x*b(n-p, i-1)))(

`if`(i=0, 1, ithprime(i)))+b(n, i-1))), x, 10)

end:

a:= n-> coeff(b(n, numtheory[pi](n)), x, 9):

seq(a(n), n=78..151); # Alois P. Heinz, Feb 24 2021

STATUS

proposed

editing

#4 by Ilya Gutkovskiy at Wed Feb 24 20:06:25 EST 2021
STATUS

editing

proposed

#3 by Ilya Gutkovskiy at Wed Feb 24 19:26:27 EST 2021
#2 by Ilya Gutkovskiy at Wed Feb 24 19:19:59 EST 2021
NAME

allocated for Ilya GutkovskiyNumber of partitions of n into 9 distinct primes (counting 1 as a prime).

DATA

1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 2, 0, 3, 0, 1, 0, 3, 0, 5, 0, 4, 1, 6, 0, 10, 0, 6, 1, 11, 1, 16, 1, 11, 2, 19, 2, 25, 1, 18, 5, 32, 4, 36, 2, 32, 9, 47, 7, 55, 7, 49, 14, 69, 10, 80, 12, 74, 22, 98, 19, 117, 22, 106, 34, 140, 31, 158, 32, 149, 54, 194, 48, 215, 50

OFFSET

78,11

KEYWORD

allocated

nonn

AUTHOR

Ilya Gutkovskiy, Feb 24 2021

STATUS

approved

editing

#1 by Ilya Gutkovskiy at Wed Feb 24 19:19:59 EST 2021
NAME

allocated for Ilya Gutkovskiy

KEYWORD

allocated

STATUS

approved