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!)
A292190 Sum of n-th powers of products of terms in all partitions of n into distinct parts. 8

%I #22 Sep 14 2017 08:17:10

%S 1,1,4,35,337,11925,371081,49032439,3545396034,3416952655320,

%T 749189363202730,598250899004413536,2383502427069445040595,

%U 1729793152213690218766715,131751643363739706679145099315,271212858254426215135033141804302

%N Sum of n-th powers of products of terms in all partitions of n into distinct parts.

%H Alois P. Heinz, <a href="/A292190/b292190.txt">Table of n, a(n) for n = 0..98</a>

%F a(n) = [x^n] Product_{k=1..n} (1 + k^n*x^k).

%e 5 = 4 + 1 = 3 + 2. So a(5) = 5^5 + (4*1)^5 + (3*2)^5 = 11925.

%p b:= proc(n, i, k) option remember; (m->

%p `if`(m<n, 0, `if`(n=m, i!^k, b(n, i-1, k)+

%p `if`(i>n, 0, i^k*b(n-i, i-1, k)))))(i*(i+1)/2)

%p end:

%p a:= n-> b(n$3):

%p seq(a(n), n=0..20); # _Alois P. Heinz_, Sep 11 2017

%t nmax = 15; Table[SeriesCoefficient[Product[(1 + k^n*x^k), {k, 1, nmax}], {x, 0, n}], {n, 0, nmax}] (* _Vaclav Kotesovec_, Sep 12 2017 *)

%o (PARI) {a(n) = polcoeff(prod(k=1, n, 1+k^n*x^k+x*O(x^n)), n)}

%Y Main diagonal of A292189.

%Y Cf. A265949, A292167, A292194, A292305, A292306.

%K nonn

%O 0,3

%A _Seiichi Manyama_, Sep 11 2017

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 24 05:23 EDT 2024. Contains 371918 sequences. (Running on oeis4.)