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”).

A023015
Number of partitions of n into parts of 17 kinds.
2
1, 17, 170, 1275, 7905, 42619, 206091, 912475, 3753600, 14503040, 53073898, 185172670, 619237835, 1993524975, 6200890505, 18693654410, 54763023032, 156250892610, 435071511875, 1184288668525, 3156320339542, 8247548150893, 21155326555195, 53326448236250
OFFSET
0,2
COMMENTS
a(n) is Euler transform of A010856. - Alois P. Heinz, Oct 17 2008
FORMULA
a(0) = 1, a(n) = (17/n)*Sum_{k=1..n} A000203(k)*a(n-k) for n > 0. - Seiichi Manyama, Mar 27 2017
MAPLE
with(numtheory): a:= proc(n) option remember; `if`(n=0, 1, add(add(d*17, d=divisors(j)) *a(n-j), j=1..n)/n) end: seq(a(n), n=0..40); # Alois P. Heinz, Oct 17 2008
MATHEMATICA
CoefficientList[Series[1/QPochhammer[x]^17, {x, 0, 30}], x] (* Indranil Ghosh, Mar 27 2017 *)
PROG
(PARI) Vec(1/eta(x)^17 + O(x^30)) \\ Indranil Ghosh, Mar 27 2017
CROSSREFS
Cf. 17th column of A144064. - Alois P. Heinz, Oct 17 2008
Sequence in context: A155658 A121037 A282922 * A022645 A326211 A164747
KEYWORD
nonn
STATUS
approved